AccessModifier EnumerationNReflect
This enumeration contains all possible access modifiers.

Namespace: NReflect.Modifier
Assembly: NReflect (in NReflect.dll) Version: 0.9.3.0 (0.9.3.0)
Syntax

public enum AccessModifier
Members

  Member nameValueDescription
Default0 The default access in the context of the element's scope.
Public1 Access is not restricted.
ProtectedInternal2 Access is limited to the current assembly or types derived from the containing class.
Internal3 Access is limited to the current assembly.
Protected4 Access is limited to the containing class or types derived from the containing class.
Private5 Access is limited to the containing type.
See Also