1 write to WriterFactory
Microsoft.AspNetCore.Mvc.Abstractions (1)
Formatters\OutputFormatterWriteContext.cs (1)
26WriterFactory = writerFactory;
4 references to WriterFactory
Microsoft.AspNetCore.Mvc.Abstractions (1)
Formatters\OutputFormatterWriteContext.cs (1)
47/// <see cref="WriterFactory"/> delegate, and use <see cref="HttpResponse.Body"/> instead.
Microsoft.AspNetCore.Mvc.Formatters.Xml (2)
XmlDataContractSerializerOutputFormatter.cs (1)
268await using (var textWriter = context.WriterFactory(responseStream, writerSettings.Encoding))
XmlSerializerOutputFormatter.cs (1)
245await using (var textWriter = context.WriterFactory(responseStream, selectedEncoding))
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
NewtonsoftJsonOutputFormatter.cs (1)
171await using (var writer = context.WriterFactory(responseStream, selectedEncoding))