Enum
public enum MemberIdKind

Namespace: Moka.Docs.CSharp.XmlDoc

The kind of member referenced by a member ID.

Fields

NameDescription
Error static An error reference.
Event static An event.
Field static A field.
Method static A method or constructor.
Namespace static A namespace.
Property static A property.
Type static A type (class, struct, etc.).

Error

Error = 6

An error reference.

Event

Event = 5

An event.

Field

Field = 4

A field.

Method

Method = 2

A method or constructor.

Namespace

Namespace = 0

A namespace.

Property

Property = 3

A property.

Type

Type = 1

A type (class, struct, etc.).

View Source
/// <summary>
///     The kind of member referenced by a member ID.
/// </summary>
public enum MemberIdKind
{
    /// <summary>A namespace.</summary>
    Namespace,
    /// <summary>A type (class, struct, etc.).</summary>
    Type,
    /// <summary>A method or constructor.</summary>
    Method,
    /// <summary>A property.</summary>
    Property,
    /// <summary>A field.</summary>
    Field,
    /// <summary>An event.</summary>
    Event,
    /// <summary>An error reference.</summary>
    Error
}
Was this page helpful?