Show / Hide Table of Contents

    Class LockableThreadDirection

    Lockable value for ThreadDirection

    Inheritance
    System.Object
    Lockable
    LockableThreadDirection
    Inherited Members
    Lockable.Unlock()
    Lockable.GetIsLocked()
    Lockable.ToString()
    Lockable.LockType
    Lockable.IsLocked
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public sealed class LockableThreadDirection : Lockable

    Constructors

    LockableThreadDirection()

    Declaration
    public LockableThreadDirection()

    LockableThreadDirection(ThreadDirection)

    Create a locked ViaMemberEdit LockableThreadDirection from a ThreadDirection

    Declaration
    public LockableThreadDirection(ThreadDirection value)
    Parameters
    Type Name Description
    ThreadDirection value

    Properties

    Value

    The underlying value

    Declaration
    public ThreadDirection Value { get; set; }
    Property Value
    Type Description
    ThreadDirection

    Methods

    Dispose(Boolean)

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    System.Boolean disposing
    Overrides
    Lockable.Dispose(Boolean)

    Operators

    Implicit(LockableThreadDirection to ThreadDirection)

    Implicit conversion to value type

    Declaration
    public static implicit operator ThreadDirection(LockableThreadDirection value)
    Parameters
    Type Name Description
    LockableThreadDirection value
    Returns
    Type Description
    ThreadDirection

    Implicit(ThreadDirection to LockableThreadDirection)

    Implicit conversion using the ThreadDirection constructor

    Declaration
    public static implicit operator LockableThreadDirection(ThreadDirection value)
    Parameters
    Type Name Description
    ThreadDirection value
    Returns
    Type Description
    LockableThreadDirection
    Back to top