다음을 통해 공유


NewtonsoftJsonObjectSerializer Constructors

Definition

Overloads

NewtonsoftJsonObjectSerializer()

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

NewtonsoftJsonObjectSerializer(JsonSerializerSettings)

Initializes new instance of NewtonsoftJsonObjectSerializer.

NewtonsoftJsonObjectSerializer()

Source:
NewtonsoftJsonObjectSerializer.cs

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

public NewtonsoftJsonObjectSerializer ();
Public Sub New ()

Applies to

NewtonsoftJsonObjectSerializer(JsonSerializerSettings)

Source:
NewtonsoftJsonObjectSerializer.cs

Initializes new instance of NewtonsoftJsonObjectSerializer.

public NewtonsoftJsonObjectSerializer (Newtonsoft.Json.JsonSerializerSettings settings);
new Azure.Core.Serialization.NewtonsoftJsonObjectSerializer : Newtonsoft.Json.JsonSerializerSettings -> Azure.Core.Serialization.NewtonsoftJsonObjectSerializer
Public Sub New (settings As JsonSerializerSettings)

Parameters

settings
Newtonsoft.Json.JsonSerializerSettings

The Newtonsoft.Json.JsonSerializerSettings instance to use when serializing/deserializing.

Exceptions

settings is null.

Applies to