NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ICodeMember.SetModifiers

Sets the modifiers for the member.

[Visual Basic]
Sub SetModifiers( _
   ByVal value As Integer _
)
[C#]
void SetModifiers(
   int value
);
[C++]
void SetModifiers(
   int value
) = 0;
[JScript]
function SetModifiers(
   value : int
);

Parameters

value
The new modifiers.

Remarks

The modifiers returned are defined in the MemberModifier class. These all represent the NGWS runtime defined names for various attributes. Each language may represent these attributes in a different format. For example, SafeC uses the keyword "virtual" to denote a non-final member, while VB uses "canoveride".

See Also

ICodeMember Interface | ICodeMember Members | System.ComponentModel.Design.CodeModel Namespace | MemberModifier