Accessibility Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Enumeration for common accessibility combinations.
public enum class Accessibility
public enum Accessibility
type Accessibility =
Public Enum Accessibility
- Inheritance
-
Accessibility
Fields
Name | Value | Description |
---|---|---|
NotApplicable | 0 | No accessibility specified. |
Private | 1 | |
ProtectedAndFriend | 2 | Only accessible where both protected and friend members are accessible (more restrictive than Protected, Friend and ProtectedOrFriend). |
ProtectedAndInternal | 2 | Only accessible where both protected and internal members are accessible (more restrictive than Protected, Internal and ProtectedOrInternal). |
Protected | 3 | |
Friend | 4 | |
Internal | 4 | |
ProtectedOrFriend | 5 | Accessible wherever either protected or friend members are accessible (less restrictive than Protected, Friend and ProtectedAndFriend). |
ProtectedOrInternal | 5 | Accessible wherever either protected or internal members are accessible (less restrictive than Protected, Internal and ProtectedAndInternal). |
Public | 6 |