SIPSorcery.SIP.UASInviteTransaction.SendInformationalResponse C# (CSharp) Method

SendInformationalResponse() public method

public SendInformationalResponse ( SIPResponse sipResponse ) : void
sipResponse SIPResponse
return void
        public override void SendInformationalResponse(SIPResponse sipResponse)
        {
            try
            {
                base.SendInformationalResponse(sipResponse);

                if (CDR != null)
                {
                    CDR.Progress(sipResponse.Status, sipResponse.ReasonPhrase, null, null);
                }
            }
            catch (Exception excp)
            {
                logger.Error("Exception UASInviteTransaction SendInformationalResponse. " + excp.Message);
                throw;
            }
        }