8 references to WriteAsync
BasicWebSite (2)
Formatters\VCardFormatter_V3.cs (1)
39await context.HttpContext.Response.WriteAsync(
Formatters\VCardFormatter_V4.cs (1)
42await context.HttpContext.Response.WriteAsync(
CorsMiddlewareWebSite (1)
EchoMiddleware.cs (1)
29return context.Response.WriteAsync(path, Encoding.UTF8);
Microsoft.AspNetCore.Http.Abstractions (1)
Extensions\HttpResponseWritingExtensions.cs (1)
31return response.WriteAsync(text, Encoding.UTF8, cancellationToken);
Microsoft.AspNetCore.Http.Abstractions.Tests (2)
HttpResponseWritingExtensionsTests.cs (2)
40await context.Response.WriteAsync(inputString, encoding); 58await context.Response.WriteAsync(inputString, encoding);
Microsoft.AspNetCore.Http.Results (1)
HttpResultsHelper.cs (1)
86return response.WriteAsync(content, resolvedContentTypeEncoding);
Microsoft.AspNetCore.Mvc.Core (1)
Formatters\StringOutputFormatter.cs (1)
55return response.WriteAsync(valueAsString, encoding);