[This is preliminary documentation and is subject to change.]
The JSONWriter type exposes the following members.Methods
| Name | Description | |
|---|---|---|
| EncodeDateTime |
Writes a string in JSON format (a la "JSON encode string") - using quotes and escaping charecters that need it
| |
| EncodeString |
Writes a string in JSON format (a la "JSON encode string") - using quotes and escaping charecters that need it
| |
| Write(Object, JSONWritingOptions, IFormatProvider) |
Writes JSON data to the string
| |
| Write(Object, TextWriter, JSONWritingOptions) |
Appends JSON data into the instance of StringBuilder
| |
| Write(Object, Stream, JSONWritingOptions, Encoding) |
Writes JSON data to the stream
| |
| WriteArray |
Appends JSON representation of an IEnumerable
| |
| WriteMap(TextWriter, IEnumerable DictionaryEntry , Int32, JSONWritingOptions) |
Appends JSON representation of a map(IEnumerable(DictionaryEntry))
| |
| WriteMap(TextWriter, IDictionary, Int32, JSONWritingOptions) |
Appends JSON representation of a map(IDictionary)
| |
| WriteMap(TextWriter, Int32, JSONWritingOptions, DictionaryEntry ) |
Appends JSON representation of a map(IEnumerable(DictionaryEntry))
| |
| WriteToBuffer |
Writes JSON data to the byte[]
| |
| WriteToFile |
Writes JSON data to the file
|
See Also