Class
SerializationInfo

A wrapper class for the (de)serialization data. Elements implementing ISerializable interface use the SerializationInfo for storing / restoring property values.

Definition

Namespace:Telerik.Windows.Controls.LayoutControl.Serialization

Assembly:Telerik.Windows.Controls.Navigation.dll

Syntax:

cs-api-definition
public class SerializationInfo

Inheritance: objectSerializationInfo

Properties

PropertyNames

The list of all properties' names currently saved in this instance.

Declaration

cs-api-definition
public Dictionary<string, object>.KeyCollection PropertyNames { get; }

Property Value

Dictionary<string, object>.KeyCollection

this[string]

Gets or sets the object with the specified property name.

Declaration

cs-api-definition
public object this[string propertyName] { get; set; }

Parameters

propertyName

string

Property Value

object

Methods

GetXml()

Returns the XML of this serialization information.

Declaration

cs-api-definition
public XElement GetXml()

Returns

XElement

GetXmlString()

Gets the xml-based string.

Declaration

cs-api-definition
public string GetXmlString()

Returns

string