IHttpSendFileFeature.SendFileAsync 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在响应正文中发送请求的文件。 这可能会绕过 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
要从其开始的文件中的偏移量。
- cancellation
- CancellationToken
CancellationToken用于中止传输的 。