메소드 | 설명 | |
---|---|---|
Dispose ( ) : void |
Disposes the current JSON writer object.
|
|
JsonWriter ( |
Creates a new JsonWriter from the underlying stream.
|
|
Write ( object value ) : void |
Writes a raw simple object to the underlying stream.
|
|
WriteArray ( IEnumerable c ) : void |
Writes an array to the underlying stream.
|
|
WriteArrayProperty ( string name, IEnumerable val ) : void |
Writes an array property to the underlying stream.
|
|
WriteBeginArray ( ) : void |
Writes the opening array tag to the underlying stream.
|
|
WriteBool ( bool value ) : void |
Writes a boolean value to the underlying stream.
|
|
WriteEndArray ( ) : void |
Writes the closing array tag to the underlying stream.
|
|
WriteEndObject ( ) : void |
Writes an object closing to the underlying stream.
|
|
WriteFirstArrayProperty ( string name, IEnumerable val ) : void |
Writes the first array property to the underlying stream.
|
|
WriteMatrix ( Matrix matrix ) : void |
Writes a Matrix object to the underlying stream.
|
|
WriteNull ( ) : void |
Writes a null value tag to the underlying stream.
|
|
WriteObject ( object o ) : void |
Writes a raw complex object to the underlying stream.
|
|
WriteProperty ( string name, object val ) : void |
Writes a non-first property to the underlying stream.
|
|
WriteStartObject ( ) : void |
Writes an object opening tag to the underlying stream.
|
|
WriteString ( string value ) : void |
Writes a string value to the underlying stream.
|
|
WriteVector ( |
Writes a Vector object to the underlying stream.
|
메소드 | 설명 | |
---|---|---|
WriteFirstProperty ( string name, object val ) : void |
Writes the first property to the underlying stream.
|
|
WriteSimpleType ( object value ) : void |
Writes a simple type to the underlying stream (see TypeHelpers.IsSimpleType(Type, Type[]))
|
|
WriteToken ( int token ) : void | ||
determineWriteAction ( object value, |
public JsonWriter ( |
||
writer | ||
리턴 | System |
public WriteArrayProperty ( string name, IEnumerable val ) : void | ||
name | string | Property name to use when writing. |
val | IEnumerable | Value to write. |
리턴 | void |
public WriteFirstArrayProperty ( string name, IEnumerable val ) : void | ||
name | string | Property name to use when writing. |
val | IEnumerable | Value to write. |
리턴 | void |
public WriteProperty ( string name, object val ) : void | ||
name | string | Property name to use when writing. |
val | object | Value to write. |
리턴 | void |
public WriteVector ( |
||
v | ||
리턴 | void |