Class EntitySubsetCollection.SubSetEnumerator
Represents a internal enumerator for EntitySubSetCollection.
Inheritance
System.Object
EntitySubsetCollection.SubSetEnumerator
Implements
System.Collections.IEnumerator
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.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Syncfusion.DocIO.DLS
Assembly: Syncfusion.DocIO.Base.dll
Syntax
public class SubSetEnumerator : IEnumerator
Constructors
SubSetEnumerator(EntitySubsetCollection)
Initializes a new instance of the EntitySubsetCollection.SubSetEnumerator class.
Declaration
public SubSetEnumerator(EntitySubsetCollection enColl)
Parameters
Type | Name | Description |
---|---|---|
EntitySubsetCollection | enColl | The entities collection. |
Properties
Current
Declaration
public object Current { get; }
Property Value
Type |
---|
System.Object |
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | The enumerator is positioned before the first element of the collection or after the last element. |
Methods
MoveNext()
Declaration
public bool MoveNext()
Returns
Type |
---|
System.Boolean |
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | The collection was modified after the enumerator was created. |
Reset()
Sets the enumerator to its initial position, which is before the first element in the collection.
Declaration
public void Reset()
Exceptions
Type | Condition |
---|---|
System.InvalidOperationException | The collection was modified after the enumerator was created. |
Implements
System.Collections.IEnumerator