< Summary

Information
Class: Elsa.Http.HttpEndpointFaultContext
Assembly: Elsa.Http
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Http/Models/HttpEndpointFaultContext.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 1
Coverable lines: 1
Total lines: 12
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_HttpContext()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Http/Models/HttpEndpointFaultContext.cs

#LineLine coverage
 1using Elsa.Workflows.State;
 2using Microsoft.AspNetCore.Http;
 3
 4namespace Elsa.Http;
 5
 6/// <summary>
 7/// Provides context about the faulted workflow.
 8/// </summary>
 9/// <param name="HttpContext">The HTTP context.</param>
 10/// <param name="WorkflowState">The faulted workflow state.</param>
 11/// <param name="CancellationToken">The cancellation token.</param>
 012public record HttpEndpointFaultContext(HttpContext HttpContext, WorkflowState WorkflowState, CancellationToken Cancellat

Methods/Properties

get_HttpContext()