SIPSorcery.SIP.SIPNonInviteTransaction.SIPNonInviteTransaction_TransactionFinalResponseReceived C# (CSharp) Method

SIPNonInviteTransaction_TransactionFinalResponseReceived() private method

private SIPNonInviteTransaction_TransactionFinalResponseReceived ( SIPEndPoint localSIPEndPoint, SIPEndPoint remoteEndPoint, SIPTransaction sipTransaction, SIPResponse sipResponse ) : void
localSIPEndPoint SIPEndPoint
remoteEndPoint SIPEndPoint
sipTransaction SIPTransaction
sipResponse SIPResponse
return void
        private void SIPNonInviteTransaction_TransactionFinalResponseReceived(SIPEndPoint localSIPEndPoint, SIPEndPoint remoteEndPoint, SIPTransaction sipTransaction, SIPResponse sipResponse)
        {
            if (NonInviteTransactionFinalResponseReceived != null)
            {
                NonInviteTransactionFinalResponseReceived(localSIPEndPoint, remoteEndPoint, this, sipResponse);
            }
        }