Delegate LogSipRequestDelegate
Delegate type for the LogSipRequest event of the SipTransport class.
Namespace: SipLib.Channels
Assembly: SipLib.dll
Syntax
public delegate void LogSipRequestDelegate(SIPRequest sipRequest, IPEndPoint remoteEndPoint, bool Sent, SipTransport sipTransport)
Parameters
Type | Name | Description |
---|---|---|
SIPRequest | sipRequest | SIPRequest that was sent or received |
IPEndPoint | remoteEndPoint | If Sent is true then this is the IPEndPoint that the request was sent to. If Sent is false, then this is the IPEndPoint that the request was received from. |
bool | Sent | True if the SipTransport sent the SIPRequest. False if the SipTransport received the SIPRequest. |
SipTransport | sipTransport | SipTransport object that fired the event. |