JsonNamespace class

From Catglobe Wiki
Jump to: navigation, search

JsonNamespace



The json namespace

Parent class

Inherits from object

Methods

  • string Encode(object obj "Object to encode") - Encode an object to a json string
  • string EncodeWcf(object obj "Object to encode") - Encode an object to a json string using Wcf json (where __type is added)
  • object Parse(string json "String to parse") - Parse a json string to an object structure
  • object ParseWcf(string json "String to parse") - Parse a json string to an object structure using Wcf json (where __type is respected)
  • (From object) string ToString() - The string representation of the object.

Properties

  • string ObjectTypeName { get; } - The name of the type of object.
  • (From object) TypeInformation TypeInformation { get; } - Get information about this class.