C# Class IronJSON.IronJSONValue

Mostrar archivo Open project: jabb/IronJSON Class Usage Examples

Public Methods

Method Description
IronJSONValue ( IronJSONObject o ) : System

Constructor.

IronJSONValue ( ValueType type ) : System

Constructor.

IronJSONValue ( bool b ) : System

Constructor.

IronJSONValue ( double f ) : System

Constructor.

IronJSONValue ( long i ) : System

Constructor.

IronJSONValue ( string str ) : System

Constructor.

ToString ( ) : string

Converts this value to a string to be written out to a JSON file.

ToString ( int indentLevel ) : string

Converts this value to a string to be written out to a JSON file.

Method Details

IronJSONValue() public method

Constructor.
public IronJSONValue ( IronJSONObject o ) : System
o IronJSONObject /// A ///
return System

IronJSONValue() public method

Constructor.
public IronJSONValue ( ValueType type ) : System
type System.ValueType /// A ///
return System

IronJSONValue() public method

Constructor.
public IronJSONValue ( bool b ) : System
b bool /// A ///
return System

IronJSONValue() public method

Constructor.
public IronJSONValue ( double f ) : System
f double /// A ///
return System

IronJSONValue() public method

Constructor.
public IronJSONValue ( long i ) : System
i long /// A ///
return System

IronJSONValue() public method

Constructor.
public IronJSONValue ( string str ) : System
str string /// A ///
return System

ToString() public method

Converts this value to a string to be written out to a JSON file.
public ToString ( ) : string
return string

ToString() public method

Converts this value to a string to be written out to a JSON file.
public ToString ( int indentLevel ) : string
indentLevel int /// A which indicates the indentation /// level to use. ///
return string