Class CountWorkflowsInput
- Namespace
 - Temporalio.Client.Interceptors
 
- Assembly
 - Temporalio.dll
 
Input for CountWorkflowsAsync(CountWorkflowsInput).
public record CountWorkflowsInput : IEquatable<CountWorkflowsInput>
  - Inheritance
 - 
      
      CountWorkflowsInput
 
- Implements
 
- Inherited Members
 
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Constructors
CountWorkflowsInput(string, WorkflowCountOptions?)
Input for CountWorkflowsAsync(CountWorkflowsInput).
public CountWorkflowsInput(string Query, WorkflowCountOptions? Options)
  Parameters
QuerystringCount query.
OptionsWorkflowCountOptionsOptions passed in to count.
Remarks
WARNING: This constructor may have required properties added. Do not rely on the exact constructor, only use "with" clauses.
Properties
Options
Options passed in to count.
public WorkflowCountOptions? Options { get; init; }
  Property Value
Query
Count query.
public string Query { get; init; }