PushNotificationSubscriptionRepositoryGet Method |
Returns all subscriptions for given userName
Namespace: Scanjour.Workflow4.Web.Services.RepositoriesAssembly: Scanjour.Workflow4.Web.Services (in Scanjour.Workflow4.Web.Services.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic WzpPushSubscription[] Get(
Uri oDataUri,
string userName = null,
string deviceToken = null
)
Public Function Get (
oDataUri As Uri,
Optional userName As String = Nothing,
Optional deviceToken As String = Nothing
) As WzpPushSubscription()
public:
array<WzpPushSubscription^>^ Get(
Uri^ oDataUri,
String^ userName = nullptr,
String^ deviceToken = nullptr
)
member Get :
oDataUri : Uri *
?userName : string *
?deviceToken : string
(* Defaults:
let _userName = defaultArg userName null
let _deviceToken = defaultArg deviceToken null
*)
-> WzpPushSubscription[]
Parameters
- oDataUri Uri
- The Odata Uri.
- userName String (Optional)
- The name of the user
- deviceToken String (Optional)
- Device token
Return Value
WzpPushSubscriptionEnumerable of subscriptions
See Also