Class JsonTextWriter
Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
Implements
Inherited Members
Namespace: Bayat.Json
Assembly: Bayat.Json.Runtime.dll
Syntax
public class JsonTextWriter : JsonWriter, IDisposable
Constructors
| Improve this Doc View SourceJsonTextWriter(TextWriter)
Creates an instance of the JsonWriter
class using the specified System.
Declaration
public JsonTextWriter(TextWriter textWriter)
Parameters
Type | Name | Description |
---|---|---|
System. |
textWriter | The |
Properties
| Improve this Doc View SourceArrayPool
Gets or sets the writer's character array pool.
Declaration
public IArrayPool<char> ArrayPool { get; set; }
Property Value
Type | Description |
---|---|
IArray |
Indentation
Gets or sets how many IndentChars to write for each level in the hierarchy when Formatting is set to Formatting.Indented
.
Declaration
public int Indentation { get; set; }
Property Value
Type | Description |
---|---|
System. |
IndentChar
Gets or sets which character to use for indenting when Formatting is set to Formatting.Indented
.
Declaration
public char IndentChar { get; set; }
Property Value
Type | Description |
---|---|
System. |
QuoteChar
Gets or sets which character to use to quote attribute values.
Declaration
public char QuoteChar { get; set; }
Property Value
Type | Description |
---|---|
System. |
QuoteName
Gets or sets a value indicating whether object names will be surrounded with quotes.
Declaration
public bool QuoteName { get; set; }
Property Value
Type | Description |
---|---|
System. |
Methods
| Improve this Doc View SourceClose()
Closes this stream and the underlying stream.
Declaration
public override void Close()
Overrides
| Improve this Doc View SourceFlush()
Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
Declaration
public override void Flush()
Overrides
| Improve this Doc View SourceOnStringEscapeHandlingChanged()
Declaration
protected override void OnStringEscapeHandlingChanged()
Overrides
| Improve this Doc View SourceWriteComment(String)
Writes out a comment
/.../
containing the specified text.
Declaration
public override void WriteComment(string text)
Parameters
Type | Name | Description |
---|---|---|
System. |
text | Text to place inside the comment. |
Overrides
| Improve this Doc View SourceWriteEnd(JsonToken)
Writes the specified end token.
Declaration
protected override void WriteEnd(JsonToken token)
Parameters
Type | Name | Description |
---|---|---|
Json |
token | The end token to write. |
Overrides
| Improve this Doc View SourceWriteIndent()
Writes indent characters.
Declaration
protected override void WriteIndent()
Overrides
| Improve this Doc View SourceWriteIndentSpace()
Writes an indent space.
Declaration
protected override void WriteIndentSpace()
Overrides
| Improve this Doc View SourceWriteNull()
Writes a null value.
Declaration
public override void WriteNull()
Overrides
| Improve this Doc View SourceWritePropertyName(String)
Writes the property name of a name/value pair on a JSON object.
Declaration
public override void WritePropertyName(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the property. |
Overrides
| Improve this Doc View SourceWritePropertyName(String, Boolean)
Writes the property name of a name/value pair on a JSON object.
Declaration
public override void WritePropertyName(string name, bool escape)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the property. |
System. |
escape | A flag to indicate whether the text should be escaped when it is written as a JSON property name. |
Overrides
| Improve this Doc View SourceWriteRaw(String)
Writes raw JSON.
Declaration
public override void WriteRaw(string json)
Parameters
Type | Name | Description |
---|---|---|
System. |
json | The raw JSON to write. |
Overrides
| Improve this Doc View SourceWriteStartArray()
Writes the beginning of a JSON array.
Declaration
public override void WriteStartArray()
Overrides
| Improve this Doc View SourceWriteStartConstructor(String)
Writes the start of a constructor with the given name.
Declaration
public override void WriteStartConstructor(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The name of the constructor. |
Overrides
| Improve this Doc View SourceWriteStartObject()
Writes the beginning of a JSON object.
Declaration
public override void WriteStartObject()
Overrides
| Improve this Doc View SourceWriteUndefined()
Writes an undefined value.
Declaration
public override void WriteUndefined()
Overrides
| Improve this Doc View SourceWriteValue(Boolean)
Writes a System.
Declaration
public override void WriteValue(bool value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Byte)
Writes a System.
Declaration
public override void WriteValue(byte value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Byte[])
Writes a System.
Declaration
public override void WriteValue(byte[] value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Char)
Writes a System.
Declaration
public override void WriteValue(char value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(DateTime)
Writes a System.
Declaration
public override void WriteValue(DateTime value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(DateTimeOffset)
Writes a System.
Declaration
public override void WriteValue(DateTimeOffset value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Decimal)
Writes a System.
Declaration
public override void WriteValue(decimal value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Double)
Writes a System.
Declaration
public override void WriteValue(double value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Guid)
Writes a System.
Declaration
public override void WriteValue(Guid value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Int16)
Writes a System.
Declaration
public override void WriteValue(short value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Int32)
Writes a System.
Declaration
public override void WriteValue(int value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Int64)
Writes a System.
Declaration
public override void WriteValue(long value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Nullable<Double>)
Writes a System.Nullable<T> value.
Declaration
public override void WriteValue(double? value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System.Nullable<T> value to write. |
Overrides
| Improve this Doc View SourceWriteValue(Nullable<Single>)
Writes a System.Nullable<T> value.
Declaration
public override void WriteValue(float? value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System.Nullable<T> value to write. |
Overrides
| Improve this Doc View SourceWriteValue(Object)
Writes a System.
Declaration
public override void WriteValue(object value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(SByte)
Writes a System.
Declaration
public override void WriteValue(sbyte value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Single)
Writes a System.
Declaration
public override void WriteValue(float value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(String)
Writes a System.
Declaration
public override void WriteValue(string value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(TimeSpan)
Writes a System.
Declaration
public override void WriteValue(TimeSpan value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(UInt16)
Writes a System.
Declaration
public override void WriteValue(ushort value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(UInt32)
Writes a System.
Declaration
public override void WriteValue(uint value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(UInt64)
Writes a System.
Declaration
public override void WriteValue(ulong value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValue(Uri)
Writes a System.
Declaration
public override void WriteValue(Uri value)
Parameters
Type | Name | Description |
---|---|---|
System. |
value | The System. |
Overrides
| Improve this Doc View SourceWriteValueDelimiter()
Writes the JSON value delimiter.
Declaration
protected override void WriteValueDelimiter()
Overrides
| Improve this Doc View SourceWriteWhitespace(String)
Writes out the given white space.
Declaration
public override void WriteWhitespace(string ws)
Parameters
Type | Name | Description |
---|---|---|
System. |
ws | The string of white space characters. |