< Summary

Information
Class: Elsa.Workflows.Runtime.Parameters.StartWorkflowRuntimeParams
Assembly: Elsa.Workflows.Runtime
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Parameters/StartWorkflowRuntimeParams.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 9
Coverable lines: 9
Total lines: 20
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity Line coverage
get_CorrelationId()100%210%
get_Input()100%210%
get_Properties()100%210%
get_VersionOptions()100%210%
get_TriggerActivityId()100%210%
get_InstanceId()100%210%
get_TenantAgnostic()100%210%
get_CancellationToken()100%210%
get_ParentWorkflowInstanceId()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Workflows.Runtime/Parameters/StartWorkflowRuntimeParams.cs

#LineLine coverage
 1using Elsa.Common.Models;
 2
 3namespace Elsa.Workflows.Runtime.Parameters;
 4
 5/// <summary>
 6/// Represents parameters for starting a workflow.
 7/// </summary>
 8[Obsolete("This type is obsolete. Use the new CreateClientAsync methods of IWorkflowRuntime instead.")]
 9public class StartWorkflowRuntimeParams
 10{
 011    public string? CorrelationId { get; set; }
 012    public IDictionary<string, object>? Input { get; set; }
 013    public IDictionary<string, object>? Properties { get; set; }
 014    public VersionOptions VersionOptions { get; set; }
 015    public string? TriggerActivityId { get; set; }
 016    public string? InstanceId { get; set; }
 017    public bool TenantAgnostic { get; set; }
 018    public CancellationToken CancellationToken { get; set; }
 019    public string? ParentWorkflowInstanceId { get; set; }
 20}