We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9731c4 commit 7d547c9Copy full SHA for 7d547c9
WindowsFirewallHelper/FirewallProduct.cs
@@ -11,7 +11,7 @@ public class FirewallProduct
11
{
12
public FirewallProduct(string name)
13
14
- if (IsSupported)
+ if (!IsSupported)
15
16
throw new NotSupportedException();
17
}
@@ -79,7 +79,7 @@ public string SignedExecutableFilename
79
/// <summary>
80
/// Returns the list of all registered third party firewalls management instances
81
/// </summary>
82
- public static ICollection<FirewallProduct> ThirdPartyFirewalls
+ public static ICollection<FirewallProduct> RegisteredProducts
83
84
get => new FirewallProductsCollection(GetProducts());
85
0 commit comments