Delegate ReportReceivedDelegate
Delegate type for the ReportReceived event of the MsrpConnection class. This event is fired when it receives a MSRP REPORT request if a success report was request in call to the SendMsrpMessage method.
Namespace: SipLib.Msrp
Assembly: SipLib.dll
Syntax
public delegate void ReportReceivedDelegate(string messageID, int TotalBytes, int StatusCode, string StatusText)
Parameters
Type | Name | Description |
---|---|---|
string | messageID | Message ID parameter that was specified in the SendMsrpMessage call |
int | TotalBytes | Total bytes that were received by the remote endpoint |
int | StatusCode | Status code from the REPORT request |
string | StatusText | Status text from the REPORT request. May be null. |