示例#1
0
 public void RemoveIPAlloweds(string ip)
 {
     IPAllowedList.RemoveAll(c => c.IP == ip);
 }
 public void RemoveIpWhite(string address)
 {
     IPAllowedList.RemoveAll(ip => ip.Address.Equals(address));
 }