Show / Hide Table of Contents

    Class MemberEndHandle

    A handle specifically for member ends. This can also be passed in place of a MemberHandle, in which case it will point at the member for this end.

    Inheritance
    object
    TableIndexHandle
    MemberHandle
    MemberEndHandle
    Inherited Members
    MemberHandle.CustomPropertyHandle
    MemberHandle.CustomPropertyMapHandle
    TableIndexHandle.ToString()
    TableIndexHandle.Table
    TableIndexHandle.Index
    object.GetType()
    object.MemberwiseClone()
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    Namespace: DesignData.SDS2.Database
    Assembly: DesignData.SDS2.Database.dll
    Syntax
    public class MemberEndHandle : MemberHandle

    Constructors

    MemberEndHandle(int, MemberEnd)

    Create a new member end handle from the member number and end

    Declaration
    public MemberEndHandle(int memberNumber, MemberEnd memberEnd)
    Parameters
    Type Name Description
    int memberNumber
    MemberEnd memberEnd

    Properties

    End

    The enumeration value representing this end of a member

    Declaration
    public MemberEnd End { get; }
    Property Value
    Type Description
    MemberEnd

    Methods

    Dispose(bool)

    A handle specifically for member ends. This can also be passed in place of a MemberHandle, in which case it will point at the member for this end.

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing
    Overrides
    MemberHandle.Dispose(bool)

    Equals(object)

    A handle specifically for member ends. This can also be passed in place of a MemberHandle, in which case it will point at the member for this end.

    Declaration
    public override bool Equals(object other)
    Parameters
    Type Name Description
    object other
    Returns
    Type Description
    bool
    Overrides
    TableIndexHandle.Equals(object)

    GetHashCode()

    A handle specifically for member ends. This can also be passed in place of a MemberHandle, in which case it will point at the member for this end.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    Overrides
    TableIndexHandle.GetHashCode()
    Back to top