public sealed class XmlSchemaCollectionEnumerator : IEnumerator
|
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 | Advances the enumerator to the next schema in the collection. |
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 XmlSchema Current {get;}
|
public void DisplaySchemas(XmlSchemaCollection xsc) { XmlSchemaCollectionEnumerator ienum = xsc.GetEnumerator(); while (ienum.MoveNext()) { XmlSchema schema = ienum.Current; StringWriter sw = new StringWriter(); XmlTextWriter writer = new XmlTextWriter(sw); writer.Formatting = Formatting.Indented; writer.Indentation = 2; schema.Write(writer); Console.WriteLine(sw.ToString()); } }
~XmlSchemaCollectionEnumerator(); |
public virtual int GetHashCode(); |
public Type GetType(); |
protected object MemberwiseClone(); |
public bool MoveNext(); |
public void DisplaySchemas(XmlSchemaCollection xsc) { XmlSchemaCollectionEnumerator ienum = xsc.GetEnumerator(); while (ienum.MoveNext()) { XmlSchema schema = ienum.Current; StringWriter sw = new StringWriter(); XmlTextWriter writer = new XmlTextWriter(sw); writer.Formatting = Formatting.Indented; writer.Indentation = 2; schema.Write(writer); Console.WriteLine(sw.ToString()); } }
public virtual string ToString(); |