Search Results for

    Show / Hide Table of Contents

    Class UnqualifiedName

    A base class for unqualified names: names that can be assigned to members, but that are not qualified by their enclosing members.

    Inheritance
    object
    UnqualifiedName
    GenericName
    PointerName
    SimpleName
    Implements
    IEquatable<UnqualifiedName>
    Inherited Members
    object.Equals(object, object)
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    Namespace: Flame
    Assembly: Flame.dll
    Syntax
    public abstract class UnqualifiedName : IEquatable<UnqualifiedName>

    Methods

    | Edit this page View Source

    Equals(UnqualifiedName)

    Checks if this unqualified name equals another unqualified name.

    Declaration
    public abstract bool Equals(UnqualifiedName other)
    Parameters
    Type Name Description
    UnqualifiedName other

    An unqualified name to compare this unqualified name to.

    Returns
    Type Description
    bool

    true if this unqualified name equals the object; otherwise, false.

    | Edit this page View Source

    Equals(object)

    Checks if this unqualified name equals an object.

    Declaration
    public override bool Equals(object obj)
    Parameters
    Type Name Description
    object obj

    An object to compare this unqualified name to.

    Returns
    Type Description
    bool

    true if this unqualified name equals the object; otherwise, false.

    Overrides
    object.Equals(object)
    | Edit this page View Source

    GetHashCode()

    Gets a hash code for this unqualified name.

    Declaration
    public override abstract int GetHashCode()
    Returns
    Type Description
    int

    A hash code.

    Overrides
    object.GetHashCode()
    | Edit this page View Source

    Qualify()

    Creates a qualified name for this unqualified name.

    Declaration
    public QualifiedName Qualify()
    Returns
    Type Description
    QualifiedName
    | Edit this page View Source

    Qualify(QualifiedName)

    Qualifies this unqualified name with the given qualifier.

    Declaration
    public QualifiedName Qualify(QualifiedName qualifier)
    Parameters
    Type Name Description
    QualifiedName qualifier
    Returns
    Type Description
    QualifiedName
    | Edit this page View Source

    Qualify(UnqualifiedName)

    Qualifies this unqualified name with the given qualifier.

    Declaration
    public QualifiedName Qualify(UnqualifiedName qualifier)
    Parameters
    Type Name Description
    UnqualifiedName qualifier
    Returns
    Type Description
    QualifiedName
    | Edit this page View Source

    Qualify(string)

    Qualifies this unqualified name with the given simple name.

    Declaration
    public QualifiedName Qualify(string qualifier)
    Parameters
    Type Name Description
    string qualifier
    Returns
    Type Description
    QualifiedName
    | Edit this page View Source

    ToString()

    Gets a string representation for this unqualified name.

    Declaration
    public override abstract string ToString()
    Returns
    Type Description
    string

    A string representation.

    Overrides
    object.ToString()

    Implements

    IEquatable<T>
    • Edit this page
    • View Source
    In this article
    Back to top Generated by DocFX