HttpResponseWritingExtensions Class

Convenience methods for writing to the response.

Namespace
Microsoft.AspNetCore.Http
Assemblies
  • Microsoft.AspNetCore.Http.Abstractions

Syntax

public class HttpResponseWritingExtensions
class Microsoft.AspNetCore.Http.HttpResponseWritingExtensions

Methods

WriteAsync(Microsoft.AspNetCore.Http.HttpResponse, System.String, System.Text.Encoding, System.Threading.CancellationToken)

Writes the given text to the response body using the given encoding.

Arguments:
Return type:

System.Threading.Tasks.Task

Returns:

A task that represents the completion of the write operation.

public static Task WriteAsync(this HttpResponse response, string text, Encoding encoding, CancellationToken cancellationToken = null)
WriteAsync(Microsoft.AspNetCore.Http.HttpResponse, System.String, System.Threading.CancellationToken)

Writes the given text to the response body. UTF-8 encoding will be used.

Arguments:
Return type:

System.Threading.Tasks.Task

Returns:

A task that represents the completion of the write operation.

public static Task WriteAsync(this HttpResponse response, string text, CancellationToken cancellationToken = null)