你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

AdlsClient.ConcurrentAppendAsync 方法

定义

用于在服务器上执行并发追加的异步 API。 发生追加的偏移量由服务器确定。 异步操作。 强烈建议调用数据大小小于 4MB 的此 API。 后端 gurantees 4MB 原子追加。

public virtual System.Threading.Tasks.Task ConcurrentAppendAsync (string path, bool autoCreate, byte[] dataBytes, int offset, int length, System.Threading.CancellationToken cancelToken = default);
abstract member ConcurrentAppendAsync : string * bool * byte[] * int * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.ConcurrentAppendAsync : string * bool * byte[] * int * int * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overridable Function ConcurrentAppendAsync (path As String, autoCreate As Boolean, dataBytes As Byte(), offset As Integer, length As Integer, Optional cancelToken As CancellationToken = Nothing) As Task

参数

path
String

文件的路径

autoCreate
Boolean
dataBytes
Byte[]

要写入文件的字节数组

offset
Int32

字节数组中的偏移量

length
Int32

要从偏移量写入的字节数

cancelToken
CancellationToken

取消取消请求的 CancellationToken

返回

适用于