C# Class TcmDebugger.Service.PackageResponse

Inheritance: IXmlSerializable
Exibir arquivo Open project: mvlasenko/TridionVSRazorExtension

Public Methods

Method Description
GetSchema ( ) : XmlSchema

This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the T:System.Xml.Serialization.XmlSchemaProviderAttribute to the class.

ReadXml ( XmlReader reader ) : void

Generates an object from its XML representation.

WriteXml ( XmlWriter writer ) : void

Converts an object into its XML representation.

Method Details

GetSchema() public method

This method is reserved and should not be used. When implementing the IXmlSerializable interface, you should return null (Nothing in Visual Basic) from this method, and instead, if specifying a custom schema is required, apply the T:System.Xml.Serialization.XmlSchemaProviderAttribute to the class.
public GetSchema ( ) : XmlSchema
return System.Xml.Schema.XmlSchema

ReadXml() public method

Generates an object from its XML representation.
public ReadXml ( XmlReader reader ) : void
reader System.Xml.XmlReader The stream from which the object is deserialized.
return void

WriteXml() public method

Converts an object into its XML representation.
public WriteXml ( XmlWriter writer ) : void
writer System.Xml.XmlWriter The stream to which the object is serialized.
return void