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
Dolgozzon együtt velünk a GitHubon
A tartalom forrása a GitHubon található, ahol létrehozhat és áttekinthet problémákat és lekéréses kérelmeket is. További információért tekintse meg a közreműködői útmutatónkat.
Azure SDK for .NET