public sealed class XmlSchemaCollectionEnumerator : IEnumerator {
// Public Instance Properties
public XmlSchema Current{get; }
// Public Instance Methods
public bool MoveNext( ); // implements IEnumerator
}
This type extends
System.Collections.IEnumerator to provide a
mechanism to iterate over an XmlSchemaCollection
via the Current property and MoveNext(
) method.