Class WsRequest
Represents business manager request.
Inheritance
Implements
Inherited Members
Namespace: Mediachase.BusinessFoundation.Data.WebServices
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 10.8.0Syntax
public sealed class WsRequest : IXmlSerializable
Constructors
WsRequest()
Initializes a new instance of the WsRequest class.
Declaration
public WsRequest()
Properties
InnerRequest
Declaration
public Request InnerRequest { get; set; }
Property Value
Type | Description |
---|---|
Request |
Methods
ConvertToRequest(WsRequest)
Declaration
public static Request ConvertToRequest(WsRequest request)
Parameters
Type | Name | Description |
---|---|---|
WsRequest | request |
Returns
Type | Description |
---|---|
Request |
GetSchema()
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 System.Xml.Serialization.XmlSchemaProviderAttribute to the class.
Declaration
public XmlSchema GetSchema()
Returns
Type | Description |
---|---|
System.Xml.Schema.XmlSchema | An System.Xml.Schema.XmlSchema that describes the XML representation of the object that is produced by the System.Xml.Serialization.IXmlSerializable.WriteXml(System.Xml.XmlWriter) method and consumed by the System.Xml.Serialization.IXmlSerializable.ReadXml(System.Xml.XmlReader) method. |
ReadXml(XmlReader)
Generates an object from its XML representation.
Declaration
public void ReadXml(XmlReader reader)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlReader | reader | The System.Xml.XmlReader stream from which the object is deserialized. |
WriteXml(XmlWriter)
Converts an object into its XML representation.
Declaration
public void WriteXml(XmlWriter writer)
Parameters
Type | Name | Description |
---|---|---|
System.Xml.XmlWriter | writer | The System.Xml.XmlWriter stream to which the object is serialized. |