C# Class XSpect.Yacq.Serialization.PropertyRef

Inheritance: MemberRef
Mostrar archivo Open project: takeshik/yacq Class Usage Examples

Public Methods

Method Description
Deserialize ( ) : PropertyInfo

Dereferences this property reference.

PropertyRef ( ) : System

Initializes a new instance of the PropertyRef class.

PropertyRef ( TypeRef type, String name ) : System

Initializes a new instance of the PropertyRef class.

Serialize ( PropertyInfo property ) : PropertyRef

Returns the property reference which refers specified property.

Method Details

Deserialize() public method

Dereferences this property reference.
public Deserialize ( ) : PropertyInfo
return System.Reflection.PropertyInfo

PropertyRef() public method

Initializes a new instance of the PropertyRef class.
public PropertyRef ( ) : System
return System

PropertyRef() public method

Initializes a new instance of the PropertyRef class.
public PropertyRef ( TypeRef type, String name ) : System
type TypeRef The declaring type of this property reference, or null if the type is .
name String The name of referring property.
return System

Serialize() public static method

Returns the property reference which refers specified property.
public static Serialize ( PropertyInfo property ) : PropertyRef
property System.Reflection.PropertyInfo The property to refer.
return PropertyRef