Share via


NewtonsoftJsonOutputFormatter.CreateJsonSerializer Method

Definition

Overloads

CreateJsonSerializer()

Called during serialization to create the Newtonsoft.Json.JsonSerializer.The formatter context that is passed gives an ability to create serializer specific to the context.

CreateJsonSerializer(OutputFormatterWriteContext)

Called during serialization to create the Newtonsoft.Json.JsonSerializer.The formatter context that is passed gives an ability to create serializer specific to the context.

CreateJsonSerializer()

Source:
NewtonsoftJsonOutputFormatter.cs
Source:
NewtonsoftJsonOutputFormatter.cs
Source:
NewtonsoftJsonOutputFormatter.cs
Source:
NewtonsoftJsonOutputFormatter.cs
Source:
NewtonsoftJsonOutputFormatter.cs
Source:
NewtonsoftJsonOutputFormatter.cs

Called during serialization to create the Newtonsoft.Json.JsonSerializer.The formatter context that is passed gives an ability to create serializer specific to the context.

protected:
 virtual Newtonsoft::Json::JsonSerializer ^ CreateJsonSerializer();
protected virtual Newtonsoft.Json.JsonSerializer CreateJsonSerializer ();
abstract member CreateJsonSerializer : unit -> Newtonsoft.Json.JsonSerializer
override this.CreateJsonSerializer : unit -> Newtonsoft.Json.JsonSerializer
Protected Overridable Function CreateJsonSerializer () As JsonSerializer

Returns

Newtonsoft.Json.JsonSerializer

The Newtonsoft.Json.JsonSerializer used during serialization and deserialization.

Applies to

CreateJsonSerializer(OutputFormatterWriteContext)

Source:
NewtonsoftJsonOutputFormatter.cs
Source:
NewtonsoftJsonOutputFormatter.cs
Source:
NewtonsoftJsonOutputFormatter.cs
Source:
NewtonsoftJsonOutputFormatter.cs
Source:
NewtonsoftJsonOutputFormatter.cs
Source:
NewtonsoftJsonOutputFormatter.cs

Called during serialization to create the Newtonsoft.Json.JsonSerializer.The formatter context that is passed gives an ability to create serializer specific to the context.

protected:
 virtual Newtonsoft::Json::JsonSerializer ^ CreateJsonSerializer(Microsoft::AspNetCore::Mvc::Formatters::OutputFormatterWriteContext ^ context);
protected virtual Newtonsoft.Json.JsonSerializer CreateJsonSerializer (Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext context);
abstract member CreateJsonSerializer : Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext -> Newtonsoft.Json.JsonSerializer
override this.CreateJsonSerializer : Microsoft.AspNetCore.Mvc.Formatters.OutputFormatterWriteContext -> Newtonsoft.Json.JsonSerializer
Protected Overridable Function CreateJsonSerializer (context As OutputFormatterWriteContext) As JsonSerializer

Parameters

Returns

Newtonsoft.Json.JsonSerializer

The Newtonsoft.Json.JsonSerializer used during serialization and deserialization.

Applies to