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: - response (Microsoft.AspNetCore.Http.HttpResponse) – The
Microsoft.AspNetCore.Http.HttpResponse
. - text (System.String) – The text to write to the response.
- encoding (System.Text.Encoding) – The encoding to use.
- cancellationToken (System.Threading.CancellationToken) – Notifies when request operations should be cancelled.
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)
- response (Microsoft.AspNetCore.Http.HttpResponse) – The
-
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: - response (Microsoft.AspNetCore.Http.HttpResponse) – The
Microsoft.AspNetCore.Http.HttpResponse
. - text (System.String) – The text to write to the response.
- cancellationToken (System.Threading.CancellationToken) – Notifies when request operations should be cancelled.
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)
- response (Microsoft.AspNetCore.Http.HttpResponse) – The
-