Enum
public enum ApiAccessibility

Namespace: Moka.Docs.Core.Api

Access modifier for a type or member.

Fields

NameDescription
Internal static Internal access.
Private static Private access.
PrivateProtected static Private protected access.
Protected static Protected access.
ProtectedInternal static Protected internal access.
Public static Public access.

Internal

Internal = 2

Internal access.

Private

Private = 5

Private access.

PrivateProtected

PrivateProtected = 4

Private protected access.

Protected

Protected = 1

Protected access.

ProtectedInternal

ProtectedInternal = 3

Protected internal access.

Public

Public = 0

Public access.

View Source
/// <summary>
///     Access modifier for a type or member.
/// </summary>
public enum ApiAccessibility
{
    /// <summary>Public access.</summary>
    Public,
    /// <summary>Protected access.</summary>
    Protected,
    /// <summary>Internal access.</summary>
    Internal,
    /// <summary>Protected internal access.</summary>
    ProtectedInternal,
    /// <summary>Private protected access.</summary>
    PrivateProtected,
    /// <summary>Private access.</summary>
    Private
}
Was this page helpful?