次の方法で共有


CosmosContainer.UpsertItemStreamAsync メソッド

定義

アイテム ストリームを Azure Cosmos サービスの非同期操作としてアップサートします。

public abstract System.Threading.Tasks.Task<Azure.Response> UpsertItemStreamAsync (System.IO.Stream streamPayload, Azure.Cosmos.PartitionKey partitionKey, Azure.Cosmos.ItemRequestOptions requestOptions = default, System.Threading.CancellationToken cancellationToken = default);
abstract member UpsertItemStreamAsync : System.IO.Stream * Azure.Cosmos.PartitionKey * Azure.Cosmos.ItemRequestOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Response>
Public MustOverride Function UpsertItemStreamAsync (streamPayload As Stream, partitionKey As PartitionKey, Optional requestOptions As ItemRequestOptions = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of Response)

パラメーター

streamPayload
Stream

Streamペイロードを格納している 。

partitionKey
PartitionKey

項目のパーティション キー。 PartitionKey

requestOptions
ItemRequestOptions

(省略可能)アイテム要求のオプション ItemRequestOptions

cancellationToken
CancellationToken

(省略可能) CancellationToken 要求の取り消しを表します。

戻り値

Task読み取りリソース レコードをResponse含む をStreamラップする を含む 。

アイテムを含む Stream を Cosmos にアップサートする

using(Response response = await this.container.UpsertItemStreamAsync(stream, new PartitionKey("itemPartitionKey")))
{

    using(Stream stream = response.ContentStream)
    {
        //Read or do other operations with the stream
        using (StreamReader  streamReader = new StreamReader(stream))
        {
            string content =  streamReader.ReadToEndAsync();
        }
    }
}

適用対象