CloudAppendBlob.AppendFromStream メソッド

定義

オーバーロード

AppendFromStream(Stream, AccessCondition, BlobRequestOptions, OperationContext)

追加 BLOB にストリームを追加します。 単一ライターのシナリオにのみ推奨されます。

AppendFromStream(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext)

追加 BLOB にストリームを追加します。 単一ライターのシナリオにのみ推奨されます。

AppendFromStream(Stream, AccessCondition, BlobRequestOptions, OperationContext)

追加 BLOB にストリームを追加します。 単一ライターのシナリオにのみ推奨されます。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual void AppendFromStream (System.IO.Stream source, Microsoft.Azure.Storage.AccessCondition accessCondition = default, Microsoft.Azure.Storage.Blob.BlobRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member AppendFromStream : System.IO.Stream * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.AppendFromStream : System.IO.Stream * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
Public Overridable Sub AppendFromStream (source As Stream, Optional accessCondition As AccessCondition = Nothing, Optional options As BlobRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)

パラメーター

source
Stream

Stream BLOB コンテンツを提供する オブジェクト。

accessCondition
AccessCondition

要求を実行するために満たす必要のある条件を表す AccessCondition オブジェクトです。 null の場合、条件は使用されません。

options
BlobRequestOptions

要求の追加オプションを指定する BlobRequestOptions オブジェクトです。 の場合 null、既定のオプションが要求に適用されます。

operationContext
OperationContext

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

属性

注釈

このメソッドは、単一ライターのシナリオでのみ使用します。 内部的には、このメソッドは、複数ライターのシナリオで問題を引き起こす可能性がある重複するブロックを回避するために、追加オフセットの条件付きヘッダーを使用します。 シングルライター シナリオがある場合は、「このフラグtrueを に設定することがシナリオで許容されるかどうかを確認する」を参照してくださいAbsorbConditionalErrorsOnRetry

適用対象

AppendFromStream(Stream, Int64, AccessCondition, BlobRequestOptions, OperationContext)

追加 BLOB にストリームを追加します。 単一ライターのシナリオにのみ推奨されます。

[Microsoft.Azure.Storage.DoesServiceRequest]
public virtual void AppendFromStream (System.IO.Stream source, long length, Microsoft.Azure.Storage.AccessCondition accessCondition = default, Microsoft.Azure.Storage.Blob.BlobRequestOptions options = default, Microsoft.Azure.Storage.OperationContext operationContext = default);
[<Microsoft.Azure.Storage.DoesServiceRequest>]
abstract member AppendFromStream : System.IO.Stream * int64 * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
override this.AppendFromStream : System.IO.Stream * int64 * Microsoft.Azure.Storage.AccessCondition * Microsoft.Azure.Storage.Blob.BlobRequestOptions * Microsoft.Azure.Storage.OperationContext -> unit
Public Overridable Sub AppendFromStream (source As Stream, length As Long, Optional accessCondition As AccessCondition = Nothing, Optional options As BlobRequestOptions = Nothing, Optional operationContext As OperationContext = Nothing)

パラメーター

source
Stream

Stream BLOB コンテンツを提供する オブジェクト。

length
Int64

アップロード元のストリームから現在の位置に書き込むバイト数です。

accessCondition
AccessCondition

要求を実行するために満たす必要のある条件を表す AccessCondition オブジェクトです。 null の場合、条件は使用されません。

options
BlobRequestOptions

要求の追加オプションを指定する BlobRequestOptions オブジェクトです。 の場合 null、既定のオプションが要求に適用されます。

operationContext
OperationContext

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

属性

注釈

このメソッドは、単一ライターのシナリオでのみ使用します。 内部的には、このメソッドは、複数ライターのシナリオで問題を引き起こす可能性がある重複するブロックを回避するために、追加オフセットの条件付きヘッダーを使用します。 シングルライター シナリオがある場合は、「このフラグtrueを に設定することがシナリオで許容されるかどうかを確認する」を参照してくださいAbsorbConditionalErrorsOnRetry

適用対象