SIPSorcery.Net.STUNServer.FireSTUNPrimaryResponseOutTraceEvent C# (CSharp) Method

FireSTUNPrimaryResponseOutTraceEvent() private method

private FireSTUNPrimaryResponseOutTraceEvent ( IPEndPoint localEndPoint, IPEndPoint toEndPoint, STUNMessage stunMessage ) : void
localEndPoint System.Net.IPEndPoint
toEndPoint System.Net.IPEndPoint
stunMessage STUNMessage
return void
        private void FireSTUNPrimaryResponseOutTraceEvent(IPEndPoint localEndPoint, IPEndPoint toEndPoint, STUNMessage stunMessage)
        {
            try
            {
                if (STUNPrimaryResponseOutTraceEvent != null)
                {
                    STUNPrimaryResponseOutTraceEvent(localEndPoint, toEndPoint, stunMessage);
                }
            }
            catch (Exception excp)
            {
                logger.Error("Exception FireSTUNPrimaryResponseOutTraceEvent. " + excp.Message);
            }
        }