Show / Hide Table of Contents

    Class BoltHandle

    A handle specifically for bolts

    Inheritance
    object
    BoltHandle
    Inherited Members
    object.GetType()
    object.MemberwiseClone()
    object.ToString()
    object.Equals(object, object)
    object.ReferenceEquals(object, object)
    Namespace: DesignData.SDS2.Database
    Assembly: DesignData.SDS2.Database.dll
    Syntax
    public class BoltHandle

    Constructors

    BoltHandle(MemberHandle, Guid?)

    Create a bolt handle on a member, with the member handle and a guid to find the bolt.

    Declaration
    public BoltHandle(MemberHandle memberHandle, Guid? guid)
    Parameters
    Type Name Description
    MemberHandle memberHandle
    Guid? guid

    Properties

    Guid

    The uuid or guid representing this bolt

    Declaration
    public Guid? Guid { get; }
    Property Value
    Type Description
    Guid?

    Member

    The member this bolt is on

    Declaration
    public MemberHandle Member { get; }
    Property Value
    Type Description
    MemberHandle

    Methods

    Dispose(bool)

    A handle specifically for bolts

    Declaration
    protected virtual void Dispose(bool disposing)
    Parameters
    Type Name Description
    bool disposing

    Equals(object)

    A handle specifically for bolts

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

    ~BoltHandle()

    A handle specifically for bolts

    Declaration
    protected ~BoltHandle()

    GetHashCode()

    A handle specifically for bolts

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