Click or drag to resize
JsonPrettyFormatWriter Class
Pretty format JSON writer. Makes JSON human-readable. Decorates underlying TextWriter.
Inheritance Hierarchy

Namespace: Dextronet.Jsonie
Assembly: Dextronet.Jsonie (in Dextronet.Jsonie.dll) Version: 1.0.0.0
Syntax
public class JsonPrettyFormatWriter : TextWriter

The JsonPrettyFormatWriter type exposes the following members.

Constructors
  NameDescription
Public methodJsonPrettyFormatWriter
Decorates underlying writer with pretty JSON format.
Top
Properties
  NameDescription
Public propertyEncoding
Gets encoding of the underlying writer.
(Overrides TextWriterEncoding.)
Public propertyIndent
Gets/sets string used for indentation.
Top
Methods
  NameDescription
Public methodWrite(Char)
Writes a character.
(Overrides TextWriterWrite(Char).)
Public methodWrite(String)
For faster writing. Indent changes comes only when writing single char (relies on implementation details of JsonEncoder).
(Overrides TextWriterWrite(String).)
Top
See Also