Show / Hide Table of Contents

    Class WeldHandle

    A handle specifically for welds.

    Inheritance
    System.Object
    WeldHandle
    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 WeldHandle

    Constructors

    WeldHandle(MemberHandle, Nullable<Guid>)

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

    Declaration
    public WeldHandle(MemberHandle memberHandle, Guid? guid)
    Parameters
    Type Name Description
    MemberHandle memberHandle
    System.Nullable<System.Guid> guid

    Properties

    Guid

    The uuid or guid representing this weld

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

    Member

    The member this weld 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