C# Class Newtonsoft.Json.Serialization.TraceJsonWriter

Inheritance: JsonWriter
Show file Open project: JamesNK/Newtonsoft.Json Class Usage Examples

Public Methods

Method Description
Close ( ) : void
Flush ( ) : void
GetSerializedJsonMessage ( ) : string
TraceJsonWriter ( JsonWriter innerWriter ) : System
WriteComment ( string text ) : void
WriteEndArray ( ) : void
WriteEndConstructor ( ) : void
WriteEndObject ( ) : void
WriteNull ( ) : void
WritePropertyName ( string name ) : void
WritePropertyName ( string name, bool escape ) : void
WriteRaw ( string json ) : void
WriteRawValue ( string json ) : void
WriteStartArray ( ) : void
WriteStartConstructor ( string name ) : void
WriteStartObject ( ) : void
WriteUndefined ( ) : void
WriteValue ( System.DateTime value ) : void
WriteValue ( DateTimeOffset value ) : void
WriteValue ( System.Guid value ) : void
WriteValue ( System.TimeSpan value ) : void
WriteValue ( Uri value ) : void
WriteValue ( bool value ) : void
WriteValue ( byte value ) : void
WriteValue ( char value ) : void
WriteValue ( decimal value ) : void
WriteValue ( double value ) : void
WriteValue ( float value ) : void
WriteValue ( int value ) : void
WriteValue ( long value ) : void
WriteValue ( object value ) : void
WriteValue ( sbyte value ) : void
WriteValue ( short value ) : void
WriteValue ( string value ) : void
WriteValue ( uint value ) : void
WriteValue ( ulong value ) : void
WriteValue ( ushort value ) : void
WriteWhitespace ( string ws ) : void

Method Details

Close() public method

public Close ( ) : void
return void

Flush() public method

public Flush ( ) : void
return void

GetSerializedJsonMessage() public method

public GetSerializedJsonMessage ( ) : string
return string

TraceJsonWriter() public method

public TraceJsonWriter ( JsonWriter innerWriter ) : System
innerWriter JsonWriter
return System

WriteComment() public method

public WriteComment ( string text ) : void
text string
return void

WriteEndArray() public method

public WriteEndArray ( ) : void
return void

WriteEndConstructor() public method

public WriteEndConstructor ( ) : void
return void

WriteEndObject() public method

public WriteEndObject ( ) : void
return void

WriteNull() public method

public WriteNull ( ) : void
return void

WritePropertyName() public method

public WritePropertyName ( string name ) : void
name string
return void

WritePropertyName() public method

public WritePropertyName ( string name, bool escape ) : void
name string
escape bool
return void

WriteRaw() public method

public WriteRaw ( string json ) : void
json string
return void

WriteRawValue() public method

public WriteRawValue ( string json ) : void
json string
return void

WriteStartArray() public method

public WriteStartArray ( ) : void
return void

WriteStartConstructor() public method

public WriteStartConstructor ( string name ) : void
name string
return void

WriteStartObject() public method

public WriteStartObject ( ) : void
return void

WriteUndefined() public method

public WriteUndefined ( ) : void
return void

WriteValue() public method

public WriteValue ( System.DateTime value ) : void
value System.DateTime
return void

WriteValue() public method

public WriteValue ( DateTimeOffset value ) : void
value DateTimeOffset
return void

WriteValue() public method

public WriteValue ( System.Guid value ) : void
value System.Guid
return void

WriteValue() public method

public WriteValue ( System.TimeSpan value ) : void
value System.TimeSpan
return void

WriteValue() public method

public WriteValue ( Uri value ) : void
value System.Uri
return void

WriteValue() public method

public WriteValue ( bool value ) : void
value bool
return void

WriteValue() public method

public WriteValue ( byte value ) : void
value byte
return void

WriteValue() public method

public WriteValue ( char value ) : void
value char
return void

WriteValue() public method

public WriteValue ( decimal value ) : void
value decimal
return void

WriteValue() public method

public WriteValue ( double value ) : void
value double
return void

WriteValue() public method

public WriteValue ( float value ) : void
value float
return void

WriteValue() public method

public WriteValue ( int value ) : void
value int
return void

WriteValue() public method

public WriteValue ( long value ) : void
value long
return void

WriteValue() public method

public WriteValue ( object value ) : void
value object
return void

WriteValue() public method

public WriteValue ( sbyte value ) : void
value sbyte
return void

WriteValue() public method

public WriteValue ( short value ) : void
value short
return void

WriteValue() public method

public WriteValue ( string value ) : void
value string
return void

WriteValue() public method

public WriteValue ( uint value ) : void
value uint
return void

WriteValue() public method

public WriteValue ( ulong value ) : void
value ulong
return void

WriteValue() public method

public WriteValue ( ushort value ) : void
value ushort
return void

WriteWhitespace() public method

public WriteWhitespace ( string ws ) : void
ws string
return void