QueryResponse<T>.Current Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Get the current item in the current page of the query results. Can be called multiple times without advancing the query.
public T Current { get; }
member this.Current : 'T
Public ReadOnly Property Current As T
Property Value
T
Examples
QueryResponse<Twin> queriedTwins = await iotHubServiceClient.Query.CreateAsync<Twin>("SELECT * FROM devices");
while (await queriedTwins.MoveNextAsync()) // no item is skipped by calling this first
{
Twin queriedTwin = queriedTwins.Current;
Console.WriteLine(queriedTwin);
}
Remarks
Like with a more typical implementation of IEnumerator, this value is null until the first MoveNextAsync(QueryOptions, CancellationToken) call is made.
Applies to
Совместная работа с нами на GitHub
Источник этого содержимого можно найти на GitHub, где также можно создавать и просматривать проблемы и запросы на вытягивание. Дополнительные сведения см. в нашем руководстве для участников.
Azure SDK for .NET