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

SIPNonInviteTransaction_TransactionInformationResponseReceived() private method

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