7 references to SendFileAsync
Microsoft.AspNetCore.Http.Results (1)
VirtualFileHttpResult.cs (1)
146return response.SendFileAsync(
Microsoft.AspNetCore.Mvc.Core (2)
Infrastructure\VirtualFileResultExecutor.cs (2)
95return response.SendFileAsync(fileInfo, 100return response.SendFileAsync(fileInfo,
Microsoft.AspNetCore.StaticAssets (2)
StaticAssetsInvoker.cs (2)
194await context.Response.SendFileAsync(FileInfo, 0, _length, context.CancellationToken); 234await requestContext.Response.SendFileAsync(FileInfo, start, length, requestContext.CancellationToken);
Microsoft.AspNetCore.StaticFiles (2)
StaticFileContext.cs (2)
356await _context.Response.SendFileAsync(_fileInfo, 0, _length, _context.RequestAborted); 389await _context.Response.SendFileAsync(_fileInfo, start, length, _context.RequestAborted);