Class StatusFlowQueryBuilder
A class that builds and executes a query to return a set of statuses.
Inherited Members
Namespace: Unity.Cloud.Assets
Assembly: Unity.Cloud.Assets.dll
Syntax
public sealed class StatusFlowQueryBuilder
Methods
ExecuteAsync(CancellationToken)
Executes the query and returns the status flows that satisfy the criteria.
Declaration
public IAsyncEnumerable<IStatusFlow> ExecuteAsync(CancellationToken cancellationToken)
Parameters
Type | Name | Description |
---|---|---|
CancellationToken | cancellationToken | A token that can be used to cancel the request. |
Returns
Type | Description |
---|---|
IAsyncEnumerable<IStatusFlow> | An async enumeration of IStatusFlow. |
LimitTo(Range)
Sets the range of results to return.
Declaration
public StatusFlowQueryBuilder LimitTo(Range range)
Parameters
Type | Name | Description |
---|---|---|
Range | range | The range of results. |
Returns
Type | Description |
---|---|
StatusFlowQueryBuilder | The calling LabelQueryBuilder. |