C# Class Open.Core.Helpers.JsonHelper

Utility methods for working with JSON.
Afficher le fichier Open project: philcockfield/Open.TestHarness.SL

Méthodes publiques

Méthode Description
Parse ( string json ) : System.Collections.Dictionary

Parses the given JSON into an object.

Serialize ( object value ) : string

Serialized the given object to a JSON string.

Method Details

Parse() public méthode

Parses the given JSON into an object.
public Parse ( string json ) : System.Collections.Dictionary
json string The JSON to parse.
Résultat System.Collections.Dictionary

Serialize() public méthode

Serialized the given object to a JSON string.
public Serialize ( object value ) : string
value object The object to serialize.
Résultat string