Web.GetPushNotificationSubscribersByArgs method
Queries for the push notification subscribers for the site with the specified set of custom arguments.The passed value is compared against the subscribers’ custom arguments in the store and exact matches are returned as a collection. Null or empty custom arguments return subscribers without any filtering. If no match is found, an empty collection is returned.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client (in Microsoft.SharePoint.Client.dll)
Syntax
'Declaration
Public Function GetPushNotificationSubscribersByArgs ( _
customArgs As String _
) As PushNotificationSubscriberCollection
'Usage
Dim instance As Web
Dim customArgs As String
Dim returnValue As PushNotificationSubscriberCollection
returnValue = instance.GetPushNotificationSubscribersByArgs(customArgs)
public PushNotificationSubscriberCollection GetPushNotificationSubscribersByArgs(
string customArgs
)
Parameters
customArgs
Type: System.StringCustom arguments.
Return value
Type: Microsoft.SharePoint.Client.PushNotificationSubscriberCollection
Collection of push notification subscribers.