• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lduchosal / ipnetwork / 960

15 May 2026 07:18AM UTC coverage: 0.0% (-94.1%) from 94.053%
960

Pull #411

appveyor

web-flow
Merge ef6b054ce into 4cec191ae
Pull Request #411: Bump MSTest.TestFramework from 4.2.2 to 4.2.3

0 of 2438 relevant lines covered (0.0%)

0.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/ConsoleApplication/ProgramContext.cs
1
// <copyright file="ProgramContext.cs" company="IPNetwork">
2
// Copyright (c) IPNetwork. All rights reserved.
3
// </copyright>
4

5
namespace System.Net;
6

7
using System.Collections.Generic;
8

9
/// <summary>
10
/// The execution context.
11
/// </summary>
12
public class ProgramContext
13
{
14
    /// <summary>
15
    /// Gets the parse errors accumulated during argument parsing.
16
    /// </summary>
17
    public List<string> ParseErrors { get; } = [];
×
18

19
    /// <summary>
20
    /// Gets or sets a value indicating whether JSON output is enabled.
21
    /// </summary>
22
    public bool Json { get; set; }
×
23

24
    /// <summary>
25
    /// Gets or sets a value indicating whether gets or sets the  IPNetwork.
26
    /// </summary>
27
    public bool IPNetwork { get; set; }
×
28

29
    /// <summary>
30
    /// Gets or sets a value indicating whether gets or sets the Network.
31
    /// </summary>
32
    public bool Network { get; set; }
×
33

34
    /// <summary>
35
    /// Gets or sets a value indicating whether gets or sets the Netmask.
36
    /// </summary>
37
    public bool Netmask { get; set; }
×
38

39
    /// <summary>
40
    /// Gets or sets a value indicating whether gets or sets the Cidr.
41
    /// </summary>
42
    public bool Cidr { get; set; }
×
43

44
    /// <summary>
45
    /// Gets or sets a value indicating whether gets or sets the Broadcast.
46
    /// </summary>
47
    public bool Broadcast { get; set; }
×
48

49
    /// <summary>
50
    /// Gets or sets a value indicating whether gets or sets the FirstUsable.
51
    /// </summary>
52
    public bool FirstUsable { get; set; }
×
53

54
    /// <summary>
55
    /// Gets or sets a value indicating whether gets or sets the LastUsable.
56
    /// </summary>
57
    public bool LastUsable { get; set; }
×
58

59
    /// <summary>
60
    /// Gets or sets a value indicating whether gets or sets the Usable.
61
    /// </summary>
62
    public bool Usable { get; set; }
×
63

64
    /// <summary>
65
    /// Gets or sets a value indicating whether gets or sets the Total.
66
    /// </summary>
67
    public bool Total { get; set; }
×
68

69
    /// <summary>
70
    /// Gets or sets a value indicating whether gets or sets the CidrParse.
71
    /// </summary>
72
    public CidrParse CidrParse { get; set; } = CidrParse.Value;
×
73

74
    /// <summary>
75
    /// Gets or sets a value indicating whether gets or sets the CidrParsed.
76
    /// </summary>
77
    public byte CidrParsed { get; set; } = 32;
×
78

79
    /// <summary>
80
    /// Gets or sets a value indicating whether gets or sets the ContainNetwork.
81
    /// </summary>
82
    public IPNetwork2? ContainNetwork { get; set; }
×
83

84
    /// <summary>
85
    /// Gets or sets a value indicating whether gets or sets the OverlapNetwork.
86
    /// </summary>
87
    public IPNetwork2? OverlapNetwork { get; set; }
×
88

89
    /// <summary>
90
    /// Gets or sets a value indicating whether gets or sets the SubtractNetwork.
91
    /// </summary>
92
    public IPNetwork2? SubtractNetwork { get; set; }
×
93

94
    /// <summary>
95
    /// Gets or sets a value indicating whether gets or sets the Action.
96
    /// </summary>
97
    public Action Action { get; set; } = Action.PrintNetworks;
×
98

99
    /// <summary>
100
    /// Gets or sets a value indicating whether gets or sets the SubnetCidr.
101
    /// </summary>
102
    public byte SubnetCidr { get; set; }
×
103

104
    /// <summary>
105
    /// Gets or sets a value indicating whether gets or sets the NetworksString.
106
    /// </summary>
107
    public string[] NetworksString { get; set; } = [];
×
108

109
    /// <summary>
110
    /// Gets or sets a value indicating whether gets or sets the Networks.
111
    /// </summary>
112
    public IPNetwork2[] Networks { get; set; } = [];
×
113
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc