< Summary

Information
Class: Elsa.Http.Contexts.DownloadableContext
Assembly: Elsa.Http
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Http/Contexts/DownloadableContext.cs
Line coverage
0%
Covered lines: 0
Uncovered lines: 5
Coverable lines: 5
Total lines: 16
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
.ctor(...)100%210%
get_Manager()100%210%
get_Content()100%210%
get_Options()100%210%
get_CancellationToken()100%210%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Http/Contexts/DownloadableContext.cs

#LineLine coverage
 1using Elsa.Http.Options;
 2
 3namespace Elsa.Http.Contexts;
 4
 5/// <summary>
 6/// Provides context for downloadable providers.
 7/// </summary>
 8/// <param name="Manager">The manager.</param>
 9/// <param name="Content">The content to get downloadables from.</param>
 10/// <param name="Options">The downloadable options.</param>
 11/// <param name="CancellationToken">The cancellation token.</param>
 012public record DownloadableContext(
 013    IDownloadableManager Manager,
 014    object Content,
 015    DownloadableOptions Options,
 016    CancellationToken CancellationToken);