Show / Hide Table of Contents

    Class LockableDictionary.LockableDictionaryEnumerator

    Inheritance
    System.Object
    LockableDictionary.LockableDictionaryEnumerator
    Implements
    System.Collections.Generic.IEnumerator<System.Collections.Generic.KeyValuePair<System.String, Lockable>>
    System.Collections.IEnumerator
    System.IDisposable
    Inherited Members
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ToString()
    System.Object.ReferenceEquals(System.Object, System.Object)
    Namespace: DesignData.SDS2.Model
    Assembly: DesignData.SDS2.Model.dll
    Syntax
    public sealed class 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
    System.Collections.Generic.KeyValuePair<System.String, Lockable>

    Methods

    Dispose()

    Declaration
    public void Dispose()

    MoveNext()

    Declaration
    public bool MoveNext()
    Returns
    Type Description
    System.Boolean

    Reset()

    Declaration
    public void Reset()

    Explicit Interface Implementations

    IEnumerator.Current

    Declaration
    object IEnumerator.Current { get; }
    Returns
    Type Description
    System.Object

    Implements

    System.Collections.Generic.IEnumerator<T>
    System.Collections.IEnumerator
    System.IDisposable
    Back to top