Click or drag to resize
SerializationUtilsReadXml Method
Deserializes an object of the specified type from the specified XML reader.

Namespace: Slash.Serialization.Utils
Assembly: Slash.Serialization (in Slash.Serialization.dll) Version: 1.0.6018.40176
Syntax
public static Object ReadXml(
	XmlReader reader,
	Type type,
	string elementName
)

Parameters

reader
Type: System.XmlXmlReader
XML reader to read object from.
type
Type: SystemType
Type of object to deserialize.
elementName
Type: SystemString
Element node name the object is serialized under.

Return Value

Type: Object
Deserialized object.
See Also