C# Class SimpleFramework.Xml.Strategy.ObjectValue

The ObjectValue is an implementation of a value that represents a object other than an array. Objects described by this can be instantiated and set in to the internal graph so that they can be later retrieved.
Inheritance: Value
Exibir arquivo Open project: ngallagher/simplexml

Public Methods

Method Description
IsReference ( ) : bool
ObjectValue ( Class type ) : System

Constructor for the ObjectValue object. This is used to describe an object that can be instantiated by the deserialization process and set on the internal graph used.

Method Details

IsReference() public method

public IsReference ( ) : bool
return bool

ObjectValue() public method

Constructor for the ObjectValue object. This is used to describe an object that can be instantiated by the deserialization process and set on the internal graph used.
public ObjectValue ( Class type ) : System
type Class /// this is the type of object that is described ///
return System