예제 #1
0
 public IPSubnet(System.String dottedNet, System.String dottedMask) : this(IPUtil.IpToLong(dottedNet), IPUtil.MaskToLong(dottedMask))
 {
 }
예제 #2
0
 public override long nextNumber()
 {
     return(IPUtil.IpToLong(nextIPAddress()));
 }
예제 #3
0
 public IPSubnet(System.String net, int maskBits) : this(IPUtil.IpToLong(net), IPUtil.MaskToLong(maskBits))
 {
 }
예제 #4
0
 protected internal IPAddressRange(System.String min, System.String max, bool isRandom, long totalMin, long totalMax) : this(IPUtil.IpToLong(min), IPUtil.IpToLong(max), isRandom, totalMin, totalMax)
 {
 }