Delegate SipTransactionCompleteDelegate
Delegate type for the method that the SipTransport will call when a SIP transaction has been completed.
Namespace: SipLib.Channels
Assembly: SipLib.dll
Syntax
public delegate void SipTransactionCompleteDelegate(SIPRequest sipRequest, SIPResponse? sipResponse, IPEndPoint remoteEndPoint, SipTransport sipTransport, SipTransactionBase Transaction)
Parameters
Type | Name | Description |
---|---|---|
SIPRequest | sipRequest | SIP request for the transaction. |
SIPResponse | sipResponse | SIP response that was received. Will be null if the transaction timed out. |
IPEndPoint | remoteEndPoint | Endpoint that send the response. Will be null if the transaction timed out. |
SipTransport | sipTransport | SipTransport that called this method. |
SipTransactionBase | Transaction | Transaction that completed. |