Exemplo n.º 1
0
 /// <summary>
 /// Remove a "black" IP address from the blacklist</summary>
 /// <remarks>The filter will be effective if <see cref="BlackListEnabled"/> is set true</remarks>
 /// <param name="address">An IPV4 address (without the port).</param>
 /// <c>It must be registered on this instance, if that address can't be found on the list the method will throw an exception!</c>
 /// <remarks>You can check if the name is registered by calling <see cref="GetBlackAddressAt(int)"/> and <see cref="BlackListLength"/></remarks>
 public void RemoveBlackAddress(string address)
 {
     _udpManager.RemoveBlackAddress(address);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Remove a "black" IP address from the blacklist</summary>
 /// <remarks>The filter will be effective if <see cref="BlackListEnabled"/> is set true</remarks>
 /// <param name="address">An IPV4 address (without the port).</param>
 /// <c>It must be registered on this instance, if that address can't be found on the list the method will throw an exception!</c>
 /// <remarks>You can check if the name is registered by calling <see cref="GetBlackAddressAt(int)"/> and <see cref="BlackListLength"/></remarks>
 public void RemoveBlackAddress(string address)
 {
     udpm.RemoveBlackAddress(address);
 }