Esempio n. 1
0
        public bool InList(IpAddress Ip)
        {
            if (IsEmpty())
                return false;

            for(int i = 0, y = IpAddress.Count;i < y; i++)
            {
                if (IpAddress[i].EqualOrInRange(Ip))
                    return true;
            }
            return false;
        }
 public IpAddressRange(IpAddress a, IpAddress b)
 {
     BeginAddress = a;
     EndAddress = b;
 }
Esempio n. 3
0
 public IpAddressRange(IpAddress a, IpAddress b)
 {
     BeginAddress = a;
     EndAddress   = b;
 }