C# Class IronJSON.IronJSONValue

Afficher le fichier Open project: jabb/IronJSON Class Usage Examples

Méthodes publiques

Méthode 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 méthode

Constructor.
public IronJSONValue ( IronJSONObject o ) : System
o IronJSONObject /// A ///
Résultat System

IronJSONValue() public méthode

Constructor.
public IronJSONValue ( ValueType type ) : System
type System.ValueType /// A ///
Résultat System

IronJSONValue() public méthode

Constructor.
public IronJSONValue ( bool b ) : System
b bool /// A ///
Résultat System

IronJSONValue() public méthode

Constructor.
public IronJSONValue ( double f ) : System
f double /// A ///
Résultat System

IronJSONValue() public méthode

Constructor.
public IronJSONValue ( long i ) : System
i long /// A ///
Résultat System

IronJSONValue() public méthode

Constructor.
public IronJSONValue ( string str ) : System
str string /// A ///
Résultat System

ToString() public méthode

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

ToString() public méthode

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. ///
Résultat string