Show / Hide Table of Contents

    Class MemberHandle

    A handle specifically for members in the SDS2 database

    Inheritance
    object
    TableIndexHandle
    MemberHandle
    MemberEndHandle
    Inherited Members
    TableIndexHandle.GetHashCode()
    TableIndexHandle.Equals(object)
    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 MemberHandle : TableIndexHandle

    Constructors

    MemberHandle(int)

    A handle specifically for members in the SDS2 database

    Declaration
    public MemberHandle(int memberNumber)
    Parameters
    Type Name Description
    int memberNumber
    Remarks

    Member numbers are more stable than other indexes in the SDS2 database, but it's still generally better to use a GUID to look these up rather than storing member numbers.

    Properties

    CustomPropertyHandle

    A handle to the custom properties for this member.

    Declaration
    public CustomPropertyMapHandle CustomPropertyHandle { get; }
    Property Value
    Type Description
    CustomPropertyMapHandle

    CustomPropertyMapHandle

    A handle to the custom properties for this member.

    Declaration
    public CustomPropertyMapHandle CustomPropertyMapHandle { get; }
    Property Value
    Type Description
    CustomPropertyMapHandle

    Methods

    Dispose(bool)

    A handle specifically for members in the SDS2 database

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing
    Overrides
    TableIndexHandle.Dispose(bool)
    Back to top