Ejemplo n.º 1
0
        public static bool ContainsIp(string rule, string clientIp)
        {
            var ip = ParseIp(clientIp);

            var range = new IpAddressRange(rule);

            if (range.Contains(ip))
            {
                return(true);
            }

            return(false);
        }
Ejemplo n.º 2
0
        public static bool ContainsIp(List <string> ipRules, string clientIp)
        {
            var ip = ParseIp(clientIp);

            if (ipRules != null && ipRules.Any())
            {
                foreach (var rule in ipRules)
                {
                    var range = new IpAddressRange(rule);

                    if (range.Contains(ip))
                    {
                        return(true);
                    }
                }
            }

            return(false);
        }