Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the intended recipients of the message to whom it was not successfully delivered as a result of the error reported in the DeliveryCode property.
Namespace: Microsoft.SharePoint.MobileMessage
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public ReadOnly Property RecipientList As IList(Of String)
Get
'Usage
Dim instance As SPMobileMessageDeliveryReportItem
Dim value As IList(Of String)
value = instance.RecipientList
public IList<string> RecipientList { get; }
Property Value
Type: System.Collections.Generic.IList<String>
The intended recipients who did not get the message.
Remarks
Typically, a recipient is identified by mobile telephone number.
Examples
The following shows an example of an error that includes a recipientList 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