< Summary

Information
Class: Elsa.Http.Options.DownloadableOptions
Assembly: Elsa.Http
File(s): /home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Http/Options/DownloadableOptions.cs
Line coverage
100%
Covered lines: 2
Uncovered lines: 0
Coverable lines: 2
Total lines: 19
Line coverage: 100%
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_ETag()100%11100%
get_Range()100%11100%

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Http/Options/DownloadableOptions.cs

#LineLine coverage
 1using System.Net.Http.Headers;
 2
 3namespace Elsa.Http.Options;
 4
 5/// <summary>
 6/// Options for downloading a file.
 7/// </summary>
 8public class DownloadableOptions
 9{
 10    /// <summary>
 11    /// Gets or sets the entity tag.
 12    /// </summary>
 2413    public EntityTagHeaderValue? ETag { get; set; }
 14
 15    /// <summary>
 16    /// Gets or sets the range.
 17    /// </summary>
 2418    public RangeHeaderValue? Range { get; set; }
 19}

Methods/Properties

get_ETag()
get_Range()