Delegate LogSipResponseDelegate
Delegate type for the LogSipResponse event of the SipTransport class.
Namespace: SipLib.Channels
Assembly: SipLib.dll
Syntax
public delegate void LogSipResponseDelegate(SIPResponse sipResponse, IPEndPoint remoteEndPoint, bool Sent, SipTransport sipTransport)
Parameters
Type | Name | Description |
---|---|---|
SIPResponse | sipResponse | SIPResponse that was sent or received |
IPEndPoint | remoteEndPoint | If Sent is true then this is the IPEndPoint that the response was sent to. If Sent is false, then this is the IPEndPoint from which the response was received from. |
bool | Sent | If true then the SipTransport sent the SIPResponse. If false then the SipTransport received the response. |
SipTransport | sipTransport | SipTransport object that fired the event. |