Class DynamicDataCollection<T>.DynamicDataCollectionEnumerator
Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Enumerator implementation for use by the DynamicDataCollection<T> class ///
Inheritance
Implements
Inherited Members
Namespace: EPiServer.Data.Dynamic.Internal
Assembly: EPiServer.Data.dll
Version: 10.10.4Syntax
public sealed class DynamicDataCollectionEnumerator : IEnumerator<T>, IDisposable, IEnumerator
Constructors
DynamicDataCollectionEnumerator(DynamicDataCollection<T>)
Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Construct the enumerator
Declaration
public DynamicDataCollectionEnumerator(DynamicDataCollection<T> enumerable)
Parameters
| Type | Name | Description |
|---|---|---|
| DynamicDataCollection<T> | enumerable | The DynamicDataCollection<T> which owns this object |
Properties
Current
Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Return the current item in the enumerator
Declaration
public T Current { get; }
Property Value
| Type | Description |
|---|---|
| T |
Methods
Dispose()
Declaration
public void Dispose()
MoveNext()
Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Move to the next item in the enumerator
Declaration
public bool MoveNext()
Returns
| Type | Description |
|---|---|
| System.Boolean |
Reset()
Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Reset the enumerator
Declaration
public void Reset()
Explicit Interface Implementations
IEnumerator.Current
Unsupported INTERNAL API! Not covered by semantic versioning; might change without notice. Return the current item in the enumerator
Declaration
object IEnumerator.Current { get; }
Returns
| Type | Description |
|---|---|
| System.Object |