Interface IJsonOutputFormatter
Responsible for formatting output to Json
Namespace: EPiServer.Formatters
Assembly: EPiServer.Cms.AspNetCore.dll
Version: 12.0.3Syntax
public interface IJsonOutputFormatter : IOutputFormatter
Methods
CreateWriter(Stream, Encoding)
Creates a System.
Declaration
TextWriter CreateWriter(Stream stream, Encoding encoding)
Parameters
Type | Name | Description |
---|---|---|
System. |
stream | The stream to use |
System. |
encoding | The encoding for the writer |
Returns
Type | Description |
---|---|
System. |
A writer. |
WriteAsync(OutputFormatterWriteContext, ResponseDecorator)
Write the object represented by context's Object property formatted to the specified writer
Declaration
Task WriteAsync(OutputFormatterWriteContext context, ResponseDecorator responseDecorator = null)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
context | The context for the formatter |
Response |
responseDecorator | An optional decorator that can be used to decorate the output |
Returns
Type | Description |
---|---|
System. |
A Task that serializes the value to the context's response message. |