public bool IsDefaultRoute() { return(Subnet.Equals(new Subnet("0.0.0.0", 0))); }
public SubnetMatchResult(bool isMatch, Subnet subnet, IPv4Address ipAddress) { IsMatch = isMatch; Subnet = subnet; IpAddress = ipAddress; }