SIPSorcery.SIP.App.SIPMonitorFilter.ShowServerIPAddress C# (CSharp) Method

ShowServerIPAddress() public method

public ShowServerIPAddress ( string serverIPAddress ) : bool
serverIPAddress string
return bool
        public bool ShowServerIPAddress(string serverIPAddress)
        {
            if (ServerIPAddress == WILDCARD || serverIPAddress == null)
            {
                return true;
            }
            else
            {
                return serverIPAddress.StartsWith(ServerIPAddress);
            }
        }