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
Spolupracujte s námi na GitHubu
Zdroj tohoto obsahu najdete na GitHubu, kde můžete také vytvářet a kontrolovat problémy a žádosti o přijetí změn. Další informace najdete v našem průvodci pro přispěvatele.
Azure SDK for .NET