CloudAppendBlob.BeginAppendText メソッド

定義

オーバーロード

BeginAppendText(String, AsyncCallback, Object)

テキストの文字列を追加 BLOB に追加する非同期操作を開始します。 この API は 1 つのライター シナリオで厳密に使用する必要があります。これは、複数のライター シナリオでは機能しない重複ブロックを回避するために、API が内部的に append-offset 条件付きヘッダーを使用するためです。

BeginAppendText(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

テキストの文字列を追加 BLOB に追加する非同期操作を開始します。 この API は 1 つのライター シナリオで厳密に使用する必要があります。これは、複数のライター シナリオでは機能しない重複ブロックを回避するために、API が内部的に append-offset 条件付きヘッダーを使用するためです。

BeginAppendText(String, AsyncCallback, Object)

テキストの文字列を追加 BLOB に追加する非同期操作を開始します。 この API は 1 つのライター シナリオで厳密に使用する必要があります。これは、複数のライター シナリオでは機能しない重複ブロックを回避するために、API が内部的に append-offset 条件付きヘッダーを使用するためです。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginAppendText (string content, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginAppendText : string * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginAppendText : string * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginAppendText (content As String, callback As AsyncCallback, state As Object) As ICancellableAsyncResult

パラメーター

content
String

アップロードするテキストを表す文字列です。

callback
AsyncCallback

AsyncCallback非同期操作の完了時に通知を受け取るデリゲート。

state
Object

コールバック デリゲートに渡されるユーザー定義オブジェクト。

戻り値

ICancellableAsyncResult非同期操作を参照する 。

属性

適用対象

BeginAppendText(String, Encoding, AccessCondition, BlobRequestOptions, OperationContext, AsyncCallback, Object)

テキストの文字列を追加 BLOB に追加する非同期操作を開始します。 この API は 1 つのライター シナリオで厳密に使用する必要があります。これは、複数のライター シナリオでは機能しない重複ブロックを回避するために、API が内部的に append-offset 条件付きヘッダーを使用するためです。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual Microsoft.Azure.Storage.ICancellableAsyncResult BeginAppendText (string content, System.Text.Encoding encoding, Microsoft.Azure.Storage.AccessCondition accessCondition, Microsoft.Azure.Storage.Blob.BlobRequestOptions options, Microsoft.Azure.Storage.OperationContext operationContext, AsyncCallback callback, object state);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member BeginAppendText : string * System.Text.Encoding * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
override this.BeginAppendText : string * System.Text.Encoding * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext * AsyncCallback * obj -> Microsoft.Azure.Storage.ICancellableAsyncResult
Public Overridable Function BeginAppendText (content As String, encoding As Encoding, accessCondition As AccessCondition, options As BlobRequestOptions, operationContext As OperationContext, callback As AsyncCallback, state As Object) As ICancellableAsyncResult

パラメーター

content
String

アップロードするテキストを表す文字列です。

encoding
Encoding

Encoding使用するテキスト エンコードを示す オブジェクト。 の場合 nullは、UTF-8 が使用されます。

accessCondition
AccessCondition

要求を実行するために満たす必要のある条件を表す AccessCondition オブジェクトです。

options
BlobRequestOptions

要求の追加オプションを指定する BlobRequestOptions オブジェクトです。

operationContext
OperationContext

現在の操作のコンテキストを表す OperationContext オブジェクトです。

callback
AsyncCallback

AsyncCallback非同期操作の完了時に通知を受け取るデリゲート。

state
Object

コールバック デリゲートに渡されるユーザー定義オブジェクト。

戻り値

ICancellableAsyncResult非同期操作を参照する 。

属性

注釈

シングルライター シナリオがある場合は、「このフラグtrueを に設定することがシナリオで許容されるかどうかを確認する」を参照してくださいAbsorbConditionalErrorsOnRetry

適用対象