C# Class SimpleFramework.Xml.Strategy.ArrayValue

The ArrayValue object is a value used for describing arrays for a specified component type object. This provides the component type for the array as well as the length of the array, which allows the deserialization process to build a suitable length array from the criteria taken from the XML element.
Inheritance: Value
Exibir arquivo Open project: ngallagher/simplexml

Public Methods

Method Description
ArrayValue ( Class type, int size ) : System

Constructor for the ArrayValue object. This will provide sufficient criteria to the deserialization process to instantiate an array of the specified size an type.

IsReference ( ) : bool

Method Details

ArrayValue() public method

Constructor for the ArrayValue object. This will provide sufficient criteria to the deserialization process to instantiate an array of the specified size an type.
public ArrayValue ( Class type, int size ) : System
type Class /// this is the component type for the array ///
size int /// this is the size of the array to instantiate ///
return System

IsReference() public method

public IsReference ( ) : bool
return bool