You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
487 B
19 lines
487 B
using Microsoft.AspNetCore.Http;
|
|
using System.Collections.Generic;
|
|
using System.Net;
|
|
|
|
namespace Znyc.Cloudcar.Admin.Commons.Net
|
|
{
|
|
public interface IIpAddressParser
|
|
{
|
|
bool ContainsIp(string ipRule, string clientIp);
|
|
|
|
bool ContainsIp(List<string> ipRules, string clientIp);
|
|
|
|
bool ContainsIp(List<string> ipRules, string clientIp, out string rule);
|
|
|
|
IPAddress GetClientIp(HttpContext context);
|
|
|
|
IPAddress ParseIp(string ipAddress);
|
|
}
|
|
}
|