Compartir a través de


IJsonWriter Interfaz

Definición

Encapsula la lógica para serializar objetos en JSON.

public interface IJsonWriter
type IJsonWriter = interface
Public Interface IJsonWriter

Métodos

WriteComma()

Escribe coma.

WriteEndArray()

Escribe cierre/corchete derecho.

WriteEndObject()

Escribe llaves de cierre/derecha.

WriteProperty(String, IDictionary<String,Double>)

Escribe una IDictionary<TKey,TValue> propiedad .

WriteProperty(String, IDictionary<String,String>)

Escribe una IDictionary<TKey,TValue> propiedad .

WriteProperty(String, Nullable<Boolean>)

Escribe una Boolean propiedad .

WriteProperty(String, Nullable<DateTimeOffset>)

Escribe una DateTimeOffset propiedad .

WriteProperty(String, Nullable<Double>)

Escribe una Double propiedad .

WriteProperty(String, Nullable<Int32>)

Escribe una Int32 propiedad .

WriteProperty(String, Nullable<TimeSpan>)

Escribe una TimeSpan propiedad .

WriteProperty(String, String)

Escribe una String propiedad .

WritePropertyName(String)

Escribe un nombre de propiedad entre comillas dobles, seguido de dos puntos.

WriteRawValue(Object)

Object Escribe como valor sin formato directamente.

WriteStartArray()

Escribe el corchete de apertura/izquierda.

WriteStartObject()

Escribe llave de apertura/izquierda.

Se aplica a