Class SerializationInfo
A wrapper class for the (de)serialization data. Elements implementing ISerializable interface use the SerializationInfo for storing / restoring property values.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Controls.LayoutControl.Serialization
Assembly: Telerik.Windows.Controls.Navigation.dll
Syntax
public class SerializationInfo
Properties
Item[String]
Gets or sets the System.Object with the specified property name.
Declaration
public object this[string propertyName] { get; set; }
Parameters
System.String
propertyName
|
Property Value
System.Object
|
PropertyNames
The list of all properties' names currently saved in this instance.
Declaration
public Dictionary<string, object>.KeyCollection PropertyNames { get; }
Property Value
System.Collections.Generic.Dictionary.KeyCollection<>
|
Methods
GetXml()
Returns the XML of this serialization information.
Declaration
public XElement GetXml()
Returns
System.Xml.Linq.XElement
|
GetXmlString()
Gets the xml-based string.
Declaration
public string GetXmlString()
Returns
System.String
|