Show / Hide Table of Contents

    Class LockableDictionary.LockableDictionaryEnumerator

    Inheritance
    object
    LockableDictionary.LockableDictionaryEnumerator
    Implements
    IEnumerator<KeyValuePair<string, Lockable>>
    IEnumerator
    IDisposable
    Inherited Members
    object.GetType()
    object.ToString()
    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 LockableDictionary.LockableDictionaryEnumerator : IEnumerator<KeyValuePair<string, Lockable>>, IEnumerator, IDisposable

    Constructors

    LockableDictionaryEnumerator(LockableDictionary)

    Declaration
    public LockableDictionaryEnumerator(LockableDictionary collection)
    Parameters
    Type Name Description
    LockableDictionary collection

    Properties

    Current

    Declaration
    public KeyValuePair<string, Lockable> Current { get; }
    Property Value
    Type Description
    KeyValuePair<string, Lockable>

    Methods

    Dispose()

    Declaration
    public void Dispose()

    MoveNext()

    Declaration
    public bool MoveNext()
    Returns
    Type Description
    bool

    Reset()

    Declaration
    public void Reset()

    Implements

    IEnumerator<T>
    IEnumerator
    IDisposable
    Back to top