Delegate MsrpMessageReceivedDelegate
Delegate type for the MsrpMessageReceived event of the MsrpConnection class.
Namespace: SipLib.Msrp
Assembly: SipLib.dll
Syntax
public delegate void MsrpMessageReceivedDelegate(string ContentType, byte[] Contents, string from)
Parameters
Type | Name | Description |
---|---|---|
string | ContentType | Value of the Content-Type header minus any header parameters. This indicates the MIME type such as text/pain, message/cpim, image/jpeg, etc... |
byte[] | Contents | Binary contents for this message. If the message was chunked then this array will contain all of the chunks concatenated together. |
string | from | The user part of the remote MSRP URI or the host part of the MSRP URI if the user part is null. |