Class ShouldSerializePropertyEventArgs
Event arguments used in the ShouldSerializePropertyHandler event.
Inheritance
Inherited Members
Namespace: Telerik.WinControls
Assembly: Telerik.WinControls.dll
Syntax
public class ShouldSerializePropertyEventArgs : EventArgs
Constructors
ShouldSerializePropertyEventArgs(PropertyDescriptor)
Initializes a new instance of the ShouldSerializePropertyEventArgs class.
Declaration
public ShouldSerializePropertyEventArgs(PropertyDescriptor property)
Parameters
System.ComponentModel.PropertyDescriptor
property
|
Properties
Property
Gets the property that is about to be serialized.
Declaration
public PropertyDescriptor Property { get; }
Property Value
System.ComponentModel.PropertyDescriptor
|
ShouldSerialize
Determines whether to serialize the property. If the value is not set the default serialization mechanism will be applied.
Declaration
public bool? ShouldSerialize { get; set; }
Property Value
System.Nullable<System.Boolean>
|