C# Class CSharpUtils.Json.JSON

Show file Open project: soywiz/csharputils

Public Methods

Method Description
Decode ( string Format ) : object
Encode ( object ObjectToEncode, bool SingleQuotes = false ) : string
Parse ( string Format ) : object
Stringify ( object ObjectToEncode, bool SingleQuotes = false ) : string

Protected Methods

Method Description
Escape ( string StringToEscape ) : string

Method Details

Decode() public static method

public static Decode ( string Format ) : object
Format string
return object

Encode() public static method

public static Encode ( object ObjectToEncode, bool SingleQuotes = false ) : string
ObjectToEncode object
SingleQuotes bool
return string

Escape() protected static method

protected static Escape ( string StringToEscape ) : string
StringToEscape string
return string

Parse() public static method

public static Parse ( string Format ) : object
Format string
return object

Stringify() public static method

public static Stringify ( object ObjectToEncode, bool SingleQuotes = false ) : string
ObjectToEncode object
SingleQuotes bool
return string