DataWeb
Search Results for

    Show / Hide Table of Contents

    Class ObjectJsonConverter

    Inheritance
    object
    JsonConverter
    JsonConverter<object>
    ObjectJsonConverter
    Inherited Members
    JsonConverter<object>.CanConvert(Type)
    JsonConverter<object>.ReadAsPropertyName(ref Utf8JsonReader, Type, JsonSerializerOptions)
    JsonConverter<object>.WriteAsPropertyName(Utf8JsonWriter, object, JsonSerializerOptions)
    JsonConverter<object>.HandleNull
    JsonConverter<object>.Type
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: DataWeb.Data
    Assembly: DataWeb.Core.dll
    Syntax
    public class ObjectJsonConverter : JsonConverter<object>

    Methods

    Read(ref Utf8JsonReader, Type, JsonSerializerOptions)

    Reads and converts the JSON to type object.

    Declaration
    public override object Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options)
    Parameters
    Type Name Description
    Utf8JsonReader reader

    The reader.

    Type typeToConvert

    The type to convert.

    JsonSerializerOptions options

    An object that specifies serialization options to use.

    Returns
    Type Description
    object

    The converted value.

    Overrides
    JsonConverter<object>.Read(ref Utf8JsonReader, Type, JsonSerializerOptions)

    Write(Utf8JsonWriter, object, JsonSerializerOptions)

    Writes a specified value as JSON.

    Declaration
    public override void Write(Utf8JsonWriter writer, object value, JsonSerializerOptions options)
    Parameters
    Type Name Description
    Utf8JsonWriter writer

    The writer to write to.

    object value

    The value to convert to JSON.

    JsonSerializerOptions options

    An object that specifies serialization options to use.

    Overrides
    JsonConverter<object>.Write(Utf8JsonWriter, object, JsonSerializerOptions)
    In this article
    Back to top Generated by DocFX