This enumeration contains all possible access modifiers.
Namespace: NReflect.ModifierAssembly: NReflect (in NReflect.dll) Version: 0.9.3.0 (0.9.3.0)
Syntax
Members
Member name | Value | Description | |
---|---|---|---|
Default | 0 | The default access in the context of the element's scope. | |
Public | 1 | Access is not restricted. | |
ProtectedInternal | 2 | Access is limited to the current assembly or types derived from the containing class. | |
Internal | 3 | Access is limited to the current assembly. | |
Protected | 4 | Access is limited to the containing class or types derived from the containing class. | |
Private | 5 | Access is limited to the containing type. |
See Also