Class PropertySerializationMetadata
Inheritance
System.Object
PropertySerializationMetadata
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Telerik.WinControls.XmlSerialization
Assembly: Telerik.WinControls.dll
Syntax
public class PropertySerializationMetadata
Constructors
PropertySerializationMetadata(String, String, Attribute[])
Declaration
public PropertySerializationMetadata(string typeFullName, string propertyName, params Attribute[] attributes)
Parameters
System.String
typeFullName
|
System.String
propertyName
|
System.Attribute[]
attributes
|
PropertySerializationMetadata(String, String, Boolean)
Declaration
public PropertySerializationMetadata(string targetTypeFullName, string propertyName, bool shouldSerialize)
Parameters
System.String
targetTypeFullName
|
System.String
propertyName
|
System.Boolean
shouldSerialize
|
PropertySerializationMetadata(String, String, AttributeCollection)
Declaration
public PropertySerializationMetadata(string targetTypeFullName, string propertyName, AttributeCollection attributes)
Parameters
System.String
targetTypeFullName
|
System.String
propertyName
|
System.ComponentModel.AttributeCollection
attributes
|
PropertySerializationMetadata(Type, String, Attribute[])
Declaration
public PropertySerializationMetadata(Type targetType, string propertyName, params Attribute[] attributes)
Parameters
System.Type
targetType
|
System.String
propertyName
|
System.Attribute[]
attributes
|
PropertySerializationMetadata(Type, String, Boolean)
Declaration
public PropertySerializationMetadata(Type targetType, string propertyName, bool shouldSerialize)
Parameters
System.Type
targetType
|
System.String
propertyName
|
System.Boolean
shouldSerialize
|
PropertySerializationMetadata(Type, String, AttributeCollection)
Declaration
public PropertySerializationMetadata(Type targetType, string propertyName, AttributeCollection attributes)
Parameters
System.Type
targetType
|
System.String
propertyName
|
System.ComponentModel.AttributeCollection
attributes
|
Properties
Attributes
Declaration
public AttributeCollection Attributes { get; set; }
Property Value
System.ComponentModel.AttributeCollection
|
PropertyName
Declaration
public string PropertyName { get; }
Property Value
System.String
|
ShouldSerializeProperty
Declaration
public virtual bool? ShouldSerializeProperty { get; set; }
Property Value
System.Nullable<System.Boolean>
|
Type
Declaration
public Type Type { get; }
Property Value
System.Type
|
TypeFullName
Declaration
public string TypeFullName { get; }
Property Value
System.String
|