public sealed class SerializationInfoEnumerator : IEnumerator
|
This class follows the IEnumerator mechanism.
| Current | Read-only Gets the item currently being examined. |
| Name | Read-only Gets the name for the item currently being examined. |
| ObjectType | Read-only Gets the type of the item currently being examined. |
| Value | Read-only Gets the value of the item currently being examined. |
| Equals (inherited from System.Object) |
See base class member description: System.Object.Equals Derived from System.Object, the primary base class for all objects. |
| GetHashCode (inherited from System.Object) |
See base class member description: System.Object.GetHashCode Derived from System.Object, the primary base class for all objects. |
| GetType (inherited from System.Object) |
See base class member description: System.Object.GetType Derived from System.Object, the primary base class for all objects. |
| MoveNext | Updates the enumerator to the next item. |
| Reset | Resets the enumerator to the first item. |
| ToString (inherited from System.Object) |
See base class member description: System.Object.ToString Derived from System.Object, the primary base class for all objects. |
| Finalize (inherited from System.Object) |
See base class member description: System.Object.Finalize Derived from System.Object, the primary base class for all objects. |
| MemberwiseClone (inherited from System.Object) |
See base class member description: System.Object.MemberwiseClone Derived from System.Object, the primary base class for all objects. |
Hierarchy:
public SerializationEntry Current {get;}
|
| Exception Type | Condition |
|---|---|
| InvalidOperationException | The enumerator has not started enumerating items or has reached the end of the enumeration. |
public string Name {get;}
|
| Exception Type | Condition |
|---|---|
| InvalidOperationException | The enumerator has not started enumerating items or has reached the end of the enumeration. |
public Type ObjectType {get;}
|
| Exception Type | Condition |
|---|---|
| InvalidOperationException | The enumerator has not started enumerating items or has reached the end of the enumeration. |
public object Value {get;}
|
| Exception Type | Condition |
|---|---|
| InvalidOperationException | The enumerator has not started enumerating items or has reached the end of the enumeration. |
~SerializationInfoEnumerator(); |
public virtual int GetHashCode(); |
public Type GetType(); |
protected object MemberwiseClone(); |
public bool MoveNext(); |
public void Reset(); |
public virtual string ToString(); |