MemberVisibility Enum
- Namespace
- Kampute.DocToolkit.Metadata
- Assembly
- Kampute.DocToolkit.dll
Definition
Represents the visibility states for a member.
public enum MemberVisibilityFields
| Name | Value | Description |
|---|---|---|
| Private | 0 | The member is private and accessible only within its own class or struct. |
| PrivateProtected | 1 | The member is accessible within its own class and by derived class instances in the same assembly. |
| Internal | 2 | The member is accessible within its own assembly. |
| Protected | 3 | The member is protected and visible outside its assembly only to derived types. |
| ProtectedInternal | 4 | The member is accessible within its own assembly and by derived class instances. |
| Public | 5 | The member is accessible from any other code. |
