Exemplo n.º 1
0
 public IPSubnet(System.String net, int maskBits) : this(IPUtil.IpToLong(net), IPUtil.MaskToLong(maskBits))
 {
 }
Exemplo n.º 2
0
 public IPSubnet(System.String dottedNet, System.String dottedMask) : this(IPUtil.IpToLong(dottedNet), IPUtil.MaskToLong(dottedMask))
 {
 }
Exemplo n.º 3
0
 public IPSubnet(long net, int maskBits) : this(net, IPUtil.MaskToLong(maskBits))
 {
 }