IHttpResponseBodyFeature.SendFileAsync 方法

定义

在响应正文中发送请求的文件。 一个响应可能包含多个写入。

public System.Threading.Tasks.Task SendFileAsync (string path, long offset, long? count, System.Threading.CancellationToken cancellationToken = default);
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), Optional cancellationToken As CancellationToken = Nothing) As Task

参数

path
String

文件的完整磁盘路径。

offset
Int64

文件中要开始的偏移量。

count
Nullable<Int64>

要发送的字节数,或 null 表示发送文件的其余部分。

cancellationToken
CancellationToken

CancellationToken用于中止传输的 。

返回

适用于