![]() |
Notification SDK Server
4.34.0
The Notification SDK Server provides a library to send notification to various devices (iOS and Android)
|
Namespaces | |
namespace | Constants |
namespace | Exceptions |
Data Structures | |
interface | INotificationSDKServer |
Provides the entry points for the NotificationSDKServer library:
| |
class | Notification |
The Notification object contains all the elements (title, subject...) to build a notification ready to be sent to the user device. It must be provided to the NotificationSDKServer.SendNotification(string, Notification) method. More... | |
class | NotificationSDKServer |
class | NotificationSDKServerCredentials |
The NotificationSDKServerCredentials object encompasses the customer's credentials necessary to log in to each platform specific push notification services. It must be provided to the NotificationSDKServer constructor. More... | |
class | NotificationSDKServerSettings |
The NotificationSDKServerSettings object contains all the settings related to the NotificationSdkServer. It must be provided to the NotificationSDKServer constructor. More... | |
Functions | |
delegate void | SendNotificationErrorDelegate (int notificationTrackingIdentifier, string vascoNotificationIdentifier, NotificationSDKServerException e) |
Callback delegate in case of error while sending a notification. More... | |
delegate void | SendNotificationSuccessDelegate (int notificationTrackingIdentifier, string vascoNotificationIdentifier) |
Callback delegate in case of success while sending a notification. More... | |
delegate void OneSpan.Digipass.Sdk.Utils.Notification.Server.SendNotificationErrorDelegate | ( | int | notificationTrackingIdentifier, |
string | vascoNotificationIdentifier, | ||
NotificationSDKServerException | e | ||
) |
Callback delegate in case of error while sending a notification.
notificationTrackingIdentifier | The tracking identifier of the corresponding notification (See Notification). |
vascoNotificationIdentifier | The VASCO notification identifier of the corresponding notification (See Notification). |
e | The exception describing the error. |
delegate void OneSpan.Digipass.Sdk.Utils.Notification.Server.SendNotificationSuccessDelegate | ( | int | notificationTrackingIdentifier, |
string | vascoNotificationIdentifier | ||
) |
Callback delegate in case of success while sending a notification.
notificationTrackingIdentifier | The tracking identifier of the corresponding notification (See Notification). |
vascoNotificationIdentifier | The VASCO notification identifier of the corresponding notification (See Notification). |