mscorlib(4.0.0.0) API with additions
IXmlSerializable.cs
1 using System.Xml.Schema;
2 
4 {
6  [global::__DynamicallyInvokable]
7  public interface IXmlSerializable
8  {
11  [global::__DynamicallyInvokable]
13 
16  [global::__DynamicallyInvokable]
17  void ReadXml(XmlReader reader);
18 
21  [global::__DynamicallyInvokable]
22  void WriteXml(XmlWriter writer);
23  }
24 }
Definition: __Canon.cs:3
XmlSchema GetSchema()
This method is reserved and should not be used. When implementing the IXmlSerializable interface,...
Represents a writer that provides a fast, non-cached, forward-only way to generate streams or files t...
Definition: XmlWriter.cs:12
Represents a reader that provides fast, noncached, forward-only access to XML data....
Definition: XmlReader.cs:15
void ReadXml(XmlReader reader)
Generates an object from its XML representation.
void WriteXml(XmlWriter writer)
Converts an object into its XML representation.
An in-memory representation of an XML Schema, as specified in the World Wide Web Consortium (W3C) XML...
Definition: XmlSchema.cs:13
Provides custom formatting for XML serialization and deserialization.