Freigeben über


CosmosContainer.ReadItemStreamAsync Methode

Definition

Liest ein Element aus dem Azure Cosmos-Dienst als asynchronen Vorgang.

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

Parameter

id
String

Die Cosmos-Element-ID

partitionKey
PartitionKey

Der Partitionsschlüssel für das Element. PartitionKey

requestOptions
ItemRequestOptions

(Optional) Die Optionen für die Elementanforderung ItemRequestOptions

cancellationToken
CancellationToken

(Optional) CancellationToken stellt die Anforderungsabbruch dar.

Gibt zurück

Eine Task , die einen Response enthält, der einen Stream umschließt, der den Leseressourcendatensatz enthält.

Beispiele

Lesen Sie eine Antwort als Stream.

using(Response response = await this.container.ReadItemStreamAsync("id", new PartitionKey("partitionKey")))
{
    using(Stream stream = response.ContentStream)
    {
        //Read or do other operations with the stream
        using (StreamReader streamReader = new StreamReader(stream))
        {
            string content =  streamReader.ReadToEndAsync();
        }
    }
}

Gilt für: