Table of Contents

Class QueryWorkflowInput

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

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Constructors

QueryWorkflowInput(string, string?, string, IReadOnlyCollection<object?>, WorkflowQueryOptions?, IDictionary<string, Payload>?)

public QueryWorkflowInput(string Id, string? RunId, string Query, IReadOnlyCollection<object?> Args, WorkflowQueryOptions? Options, IDictionary<string, Payload>? Headers)

Parameters

Id string

Workflow ID.

RunId string

Workflow run ID if any.

Query string

Query name.

Args IReadOnlyCollection<object>

Query arguments.

Options WorkflowQueryOptions

Options if any.

Headers IDictionary<string, Payload>

Headers if any. These will be encoded using the codec before sent to the server.

Remarks

WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.

Properties

Args

Query arguments.

public IReadOnlyCollection<object?> Args { get; init; }

Property Value

IReadOnlyCollection<object>

Headers

Headers if any. These will be encoded using the codec before sent to the server.

public IDictionary<string, Payload>? Headers { get; init; }

Property Value

IDictionary<string, Payload>

Id

Workflow ID.

public string Id { get; init; }

Property Value

string

Options

Options if any.

public WorkflowQueryOptions? Options { get; init; }

Property Value

WorkflowQueryOptions

Query

Query name.

public string Query { get; init; }

Property Value

string

RunId

Workflow run ID if any.

public string? RunId { get; init; }

Property Value

string