NewtonsoftJsonObjectSerializer Class

Definition

A NewtonsoftJsonObjectSerializer implementation that uses Newtonsoft.Json.JsonSerializer to for serialization/deserialization.

public class NewtonsoftJsonObjectSerializer : Azure.Core.Serialization.ObjectSerializer, Azure.Core.Serialization.IMemberNameConverter
type NewtonsoftJsonObjectSerializer = class
    inherit ObjectSerializer
    interface IMemberNameConverter
Public Class NewtonsoftJsonObjectSerializer
Inherits ObjectSerializer
Implements IMemberNameConverter
Inheritance
NewtonsoftJsonObjectSerializer
Implements

Constructors

NewtonsoftJsonObjectSerializer()

Initializes new instance of NewtonsoftJsonObjectSerializer. Uses setting returned by CreateJsonSerializerSettings().

NewtonsoftJsonObjectSerializer(JsonSerializerSettings)

Initializes new instance of NewtonsoftJsonObjectSerializer.

Methods

CreateJsonSerializerSettings()

Returns a Newtonsoft.Json.JsonSerializerSettings that's used when initializing the NewtonsoftJsonObjectSerializer using the parameterless constructor. The settings have default converters added.

Deserialize(Stream, Type, CancellationToken)

Read the binary representation into a returnType. The Stream will be read to completion.

DeserializeAsync(Stream, Type, CancellationToken)

Read the binary representation into a returnType. The Stream will be read to completion.

Serialize(Object, Type, CancellationToken)

Convert the provided value to it's binary representation and return it as a BinaryData instance.

(Inherited from ObjectSerializer)
Serialize(Stream, Object, Type, CancellationToken)

Convert the provided value to it's binary representation and write it to Stream.

SerializeAsync(Object, Type, CancellationToken)

Convert the provided value to it's binary representation and return it as a BinaryData instance.

(Inherited from ObjectSerializer)
SerializeAsync(Stream, Object, Type, CancellationToken)

Convert the provided value to it's binary representation and write it to Stream.

Explicit Interface Implementations

IMemberNameConverter.ConvertMemberName(MemberInfo)

Converts a MemberInfo to a serializable member name.

Applies to