Table of Contents

Class WorkflowListPage

Namespace
Temporalio.Client
Assembly
Temporalio.dll
public record WorkflowListPage : IEquatable<WorkflowListPage>
Inheritance
WorkflowListPage
Implements
Inherited Members

Constructors

WorkflowListPage(IReadOnlyCollection<WorkflowExecution>, byte[]?)

public WorkflowListPage(IReadOnlyCollection<WorkflowExecution> Workflows, byte[]? NextPageToken)

Parameters

Workflows IReadOnlyCollection<WorkflowExecution>

A page from the list of workflows matching the query.

NextPageToken byte[]

Token to pass to ListWorkflowsPaginatedAsync(string, byte[]?, WorkflowListPaginatedOptions?) to retrieve the next page. Null if there are no more pages.

Properties

NextPageToken

Token to pass to ListWorkflowsPaginatedAsync(string, byte[]?, WorkflowListPaginatedOptions?) to retrieve the next page. Null if there are no more pages.

public byte[]? NextPageToken { get; init; }

Property Value

byte[]

Workflows

A page from the list of workflows matching the query.

public IReadOnlyCollection<WorkflowExecution> Workflows { get; init; }

Property Value

IReadOnlyCollection<WorkflowExecution>