1 write to WriterFactory
Microsoft.AspNetCore.Mvc.Abstractions (1)
Formatters\OutputFormatterWriteContext.cs (1)
26
WriterFactory
= 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)
268
await using (var textWriter = context.
WriterFactory
(responseStream, writerSettings.Encoding))
XmlSerializerOutputFormatter.cs (1)
245
await using (var textWriter = context.
WriterFactory
(responseStream, selectedEncoding))
Microsoft.AspNetCore.Mvc.NewtonsoftJson (1)
NewtonsoftJsonOutputFormatter.cs (1)
171
await using (var writer = context.
WriterFactory
(responseStream, selectedEncoding))