< Summary

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

File(s)

/home/runner/work/elsa-core/elsa-core/src/modules/Elsa.Http/Options/FileDownloadOptions.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 FileDownloadOptions
 9{
 10    /// <summary>
 11    /// Gets or sets the entity tag.
 12    /// </summary>
 013    public EntityTagHeaderValue? ETag { get; set; }
 14
 15    /// <summary>
 16    /// Gets or sets the range.
 17    /// </summary>
 018    public RangeHeaderValue? Range { get; set; }
 19}

Methods/Properties

get_ETag()
get_Range()