Specifies constants defining a member modifiers.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
[Flags]
public enum MemberInfoModifiers
Example
Members
Member Name | Description | Value |
---|---|---|
None | Indicates that the member modifier is unknown. | 0 |
New | Indicates that the member modifier is new. | 1 |
Public | Indicates that the member modifier is public. | 2 |
Protected | Indicates that the member modifier is protected. | 4 |
Internal | Indicates that the member modifier is internal. | 8 |
ProtectedInternal | Indicates that the member modifier is protected and internal. | 12 |
Private | Indicates that the member modifier is private. | 16 |
Abstract | Indicates that the member modifier is abstract. | 32 |
Sealed | Indicates that the member modifier is sealed. | 64 |
Static | Indicates that the member modifier is static. | 128 |
Readonly | Indicates that the member modifier is read only. | 256 |
Virtual | Indicates that the member modifier is virtual. | 512 |
Override | Indicates that the member modifier is override. | 1024 |
Extern | Indicates that the member modifier is extern. | 2048 |
Unsafe | Indicates that the member modifier is unsafe. | 4096 |
SpecialName | Indicates that the member modifier is special name. | 8192 |
Literal | Indicates that the member modifier is literal. | 32768 |
Const | Indicates that the member modifier is const. | 32896 |
Volatile | Indicates that the member modifier is volatile. | 65536 |
Partial | Indicates that the member modifier is partial. | 131072 |
Writeonly | Indicates that the member modifier is write only. | 262144 |
NotOverridable | Indicates that the member modifier is NotOverridable. | 524288 |
WithEvents | Indicates that the member modifier is WithEvents. | 1048576 |
Default | Indicates that the member modifier is Default. | 2097152 |
Overloads | Indicates that the member modifier is Overloads. | 4194304 |
Requirements
Namespace: SubMain.CodeItRight.Sdk.Core.Reflection
Assembly: SubMain.CodeItRight.Sdk.Core (in SubMain.CodeItRight.Sdk.Core.dll)
See Also
SubMain.CodeItRight.Sdk.Core.Reflection Namespace