Table of Contents

Class OrchestrationStatusQueryResult

Namespace
Microsoft.Azure.WebJobs.Extensions.DurableTask
Assembly
Microsoft.Azure.WebJobs.Extensions.DurableTask.dll

The status of all orchestration instances with paging for a given query.

public class OrchestrationStatusQueryResult
Inheritance
OrchestrationStatusQueryResult
Inherited Members

Constructors

OrchestrationStatusQueryResult()

public OrchestrationStatusQueryResult()

Properties

ContinuationToken

Gets or sets a token that can be used to resume the query with data not already returned by this query.

public string ContinuationToken { get; set; }

Property Value

string

A server-generated continuation token or null if there are no further continuations.

DurableOrchestrationState

Gets or sets a collection of statuses of orchestration instances matching the query description.

public IEnumerable<DurableOrchestrationStatus> DurableOrchestrationState { get; set; }

Property Value

IEnumerable<DurableOrchestrationStatus>

A collection of orchestration instance status values.