IHttpSendFileFeature.SendFileAsync 方法

定义

在响应正文中发送请求的文件。 这可能会绕过 IHttpResponseFeature.Body Stream。 一个响应可能包含多个写入。

public:
 System::Threading::Tasks::Task ^ SendFileAsync(System::String ^ path, long offset, Nullable<long> count, System::Threading::CancellationToken cancellation);
public System.Threading.Tasks.Task SendFileAsync (string path, long offset, long? count, System.Threading.CancellationToken cancellation);
abstract member SendFileAsync : string * int64 * Nullable<int64> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function SendFileAsync (path As String, offset As Long, count As Nullable(Of Long), cancellation As CancellationToken) As Task

参数

path
String

文件的完整磁盘路径。

offset
Int64

要从其开始的文件中的偏移量。

count
Nullable<Int64>

要发送的字节数,或 null(用于发送文件的其余部分)。

cancellation
CancellationToken

CancellationToken用于中止传输的 。

返回

适用于