SPMobileMessageDeliveryReportItem.Content Property
Gets the content of an error or notification response.
Namespace: Microsoft.SharePoint.MobileMessage
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public ReadOnly Property Content As String
Get
'Usage
Dim instance As SPMobileMessageDeliveryReportItem
Dim value As String
value = instance.Content
public string Content { get; }
Property Value
Type: System.String
Detailed information optionally returned by the service to the message-sending client.
Remarks
Content can be included in a response even when the message was successfully sent to all recipients. The default is a null reference (Nothing in Visual Basic).
Examples
The following shows an example of an error element that includes a content child element.
<?xml version="1.0" encoding="utf-8"?>
<xmsResponse xmlns="https://schemas.microsoft.com/office/Outlook/2006/OMS">
<error code="perDayMsgLimit" severity="failure">
<content>20 SMS</content>
<recipientList>13601391354;13601391388</recipientList>
</error>
</xmsResponse>
See Also
Reference
SPMobileMessageDeliveryReportItem Class