Click or drag to resize
XmlAnythingT Class
Wrapper for serializing an object along with its type to and from XML.
Inheritance Hierarchy
SystemObject
  Slash.XmlXmlAnythingT

Namespace: Slash.Xml
Assembly: Slash.Xml (in Slash.Xml.dll) Version: 1.0.5843.24179
Syntax
public sealed class XmlAnything<T> : IXmlSerializable

Type Parameters

T
Type of the object to serialize.

The XmlAnythingT type exposes the following members.

Constructors
Properties
  NameDescription
Public propertyValue
Wrapped object that can be serialized to and from XML.
Top
Methods
  NameDescription
Public methodGetSchema
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 XmlSchemaProviderAttribute to the class.
Public methodReadXml
Generates an object from its XML representation.
Public methodWriteXml
Converts an object into its XML representation.
Top
See Also