Show / Hide Table of Contents

    Class BoltHandle

    A handle specifically for bolts

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

    Constructors

    BoltHandle(MemberHandle, Nullable<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
    System.Nullable<System.Guid> guid

    Properties

    Guid

    The uuid or guid representing this bolt

    Declaration
    public Guid? Guid { get; }
    Property Value
    Type Description
    System.Nullable<System.Guid>

    Member

    The member this bolt is on

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

    Methods

    Dispose(Boolean)

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

    Equals(Object)

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

    Finalize()

    Declaration
    protected void Finalize()

    GetHashCode()

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    System.Int32
    Overrides
    System.Object.GetHashCode()
    Back to top