Esempio n. 1
0
 /// <summary>
 /// Checks the given IP against the black list
 /// </summary>
 /// <param name="address">The IP to check</param>
 /// <returns>An object representing the blacklist status and any applicable matches</returns>
 public BlacklistStatus CheckIP(string address)
 {
     return(this.CheckIP(IPRegistration.ParseIp(address)));
 }