Enum AccessModifier
An enumeration of access modifiers: attributes that determine which members can access a member.
Namespace: Flame.TypeSystem
Assembly: Flame.dll
Syntax
public enum AccessModifier
Fields
Name | Description |
---|---|
Internal | Indicates that a member can be accessed by any member in the same assembly. |
Private | Indicates that a member is accessible only to members defined in the declaring type. |
Protected | Indicates that a member can be accessed only by members defined in the declaring type or its subtypes. |
ProtectedAndInternal | Indicates that a member is accessible to members defined in the declaring type or its subtypes, provided that they are also defined in the same assembly. |
ProtectedOrInternal | Indicates that a member is accessible to members defined in the declaring type or its subtypes, as well as all other members defined in the same assembly. |
Public | Indicates that a member can be accessed by any member in any assembly. |