Show / Hide Table of Contents

    Class LockableThreadDirection

    Lockable value for ThreadDirection

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

    Constructors

    LockableThreadDirection()

    Lockable value for ThreadDirection

    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(bool)

    Lockable value for ThreadDirection

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

    Operators

    implicit operator ThreadDirection(LockableThreadDirection)

    Implicit conversion to value type

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

    implicit operator LockableThreadDirection(ThreadDirection)

    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