ControlXmlSerializer
Provides XML serialization functionality specifically designed for Windows Forms controls, extending the base component serializer.
Definition
Namespace:Telerik.WinControls.XmlSerialization
Assembly:Telerik.WinControls.dll
Syntax:
public class ControlXmlSerializer : ComponentXmlSerializer
Inheritance: objectComponentXmlSerializerControlXmlSerializer
Inherited Members
Constructors
Initializes a new instance of the ControlXmlSerializer class with default control serialization settings.
public ControlXmlSerializer()
Initializes a new instance of the ControlXmlSerializer class with custom control serialization information.
public ControlXmlSerializer(ComponentXmlSerializationInfo componentSerializationInfo)
The serialization information for customizing control serialization behavior.
Methods
Processes list collections with special handling for control collections during XML deserialization.
protected override bool ProcessListOverride(XmlReader reader, object listOwner, PropertyDescriptor parentProperty, IList list)
The XML reader positioned at the list element.
listOwnerobjectThe object that owns the list being processed.
parentPropertyPropertyDescriptorThe property descriptor for the list property.
listIListThe list to populate with deserialized items.
Returns:true if the list was processed; otherwise, false.
Overrides: