NewtonsoftJsonOutputFormatter Class

Definition

A TextOutputFormatter for JSON content.

public ref class NewtonsoftJsonOutputFormatter : Microsoft::AspNetCore::Mvc::Formatters::TextOutputFormatter
public class NewtonsoftJsonOutputFormatter : Microsoft.AspNetCore.Mvc.Formatters.TextOutputFormatter
type NewtonsoftJsonOutputFormatter = class
    inherit TextOutputFormatter
Public Class NewtonsoftJsonOutputFormatter
Inherits TextOutputFormatter
Inheritance
NewtonsoftJsonOutputFormatter

Constructors

NewtonsoftJsonOutputFormatter(JsonSerializerSettings, ArrayPool<Char>, MvcOptions)
Obsolete.

Initializes a new NewtonsoftJsonOutputFormatter instance.

NewtonsoftJsonOutputFormatter(JsonSerializerSettings, ArrayPool<Char>, MvcOptions, MvcNewtonsoftJsonOptions)

Initializes a new NewtonsoftJsonOutputFormatter instance.

Properties

SerializerSettings

Gets the Newtonsoft.Json.JsonSerializerSettings used to configure the Newtonsoft.Json.JsonSerializer.

SupportedEncodings

Gets the mutable collection of character encodings supported by this TextOutputFormatter. The encodings are used when writing the data.

(Inherited from TextOutputFormatter)
SupportedMediaTypes

Gets the mutable collection of media type elements supported by this OutputFormatter.

(Inherited from OutputFormatter)

Methods

CanWriteResult(OutputFormatterCanWriteContext)

Determines whether this IOutputFormatter can serialize an object of the specified type.

(Inherited from OutputFormatter)
CanWriteType(Type)

Returns a value indicating whether or not the given type can be written by this serializer.

(Inherited from OutputFormatter)
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.

CreateJsonWriter(TextWriter)

Called during serialization to create the Newtonsoft.Json.JsonWriter.

GetSupportedContentTypes(String, Type)

Gets a filtered list of content types which are supported by the IOutputFormatter for the objectType and contentType.

(Inherited from OutputFormatter)
SelectCharacterEncoding(OutputFormatterWriteContext)

Determines the best Encoding amongst the supported encodings for reading or writing an HTTP entity body based on the provided content type.

(Inherited from TextOutputFormatter)
WriteAsync(OutputFormatterWriteContext)

Writes the object represented by context's Object property.

(Inherited from TextOutputFormatter)
WriteResponseBodyAsync(OutputFormatterWriteContext)

Writes the response body.

(Inherited from TextOutputFormatter)
WriteResponseBodyAsync(OutputFormatterWriteContext, Encoding)

Writes the response body.

WriteResponseHeaders(OutputFormatterWriteContext)

Sets the headers on HttpResponse object.

(Inherited from OutputFormatter)

Applies to