Show / Hide Table of Contents

    Class WeldHandle

    A handle specifically for welds.

    Inheritance
    object
    WeldHandle
    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 WeldHandle

    Constructors

    WeldHandle(MemberHandle, 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
    Guid? guid

    Properties

    Guid

    The uuid or guid representing this weld

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

    Member

    The member this weld is on.

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

    Methods

    Dispose(bool)

    A handle specifically for welds.

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

    Equals(object)

    A handle specifically for welds.

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

    ~WeldHandle()

    A handle specifically for welds.

    Declaration
    protected ~WeldHandle()

    GetHashCode()

    A handle specifically for welds.

    Declaration
    public override int GetHashCode()
    Returns
    Type Description
    int
    Overrides
    object.GetHashCode()
    In This Article
    • Constructors
      • WeldHandle(MemberHandle, Guid?)
    • Properties
      • Guid
      • Member
    • Methods
      • Dispose(bool)
      • Equals(object)
      • ~WeldHandle()
      • GetHashCode()
    Back to top