Accessibility Enum

Definition

Enumeration for common accessibility combinations.

public enum class Accessibility
public enum Accessibility
type Accessibility = 
Public Enum Accessibility
Inheritance
Accessibility

Fields

Friend 4
Internal 4
NotApplicable 0

No accessibility specified.

Private 1
Protected 3
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).

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

Applies to