/// <summary>
 /// Remove a "white" IP address from the whitelist</summary>
 /// <remarks>The filter will be effective if <see cref="WhiteListEnabled"/> is set true</remarks>
 /// <param name="address">An IPV4 address (without the port). It must be registered on this instance, if that address can't be found on the list the method will throw an exception!<remarks>You can check if the name is registered by calling <see cref="GetWhiteAddressAt(int)"/> and <see cref="WhiteListLength"/></remarks></param>
 public void RemoveWhiteAddress(string address)
 {
     _udpManager.RemoveWhiteAddress(address);
 }
Exemple #2
0
 /// <summary>
 /// Remove a "white" IP address from the whitelist</summary>
 /// <remarks>The filter will be effective if <see cref="WhiteListEnabled"/> is set true</remarks>
 /// <param name="address">An IPV4 address (without the port). It must be registered on this instance, if that address can't be found on the list the method will throw an exception!<remarks>You can check if the name is registered by calling <see cref="GetWhiteAddressAt(int)"/> and <see cref="WhiteListLength"/></remarks></param>
 public void RemoveWhiteAddress(string address)
 {
     udpm.RemoveWhiteAddress(address);
 }