Windows (UWP)
Push Notifications (UWP)
1. NuGet Installation
2. Setup
sealed partial class App : Application
{
protected override void OnLaunched(LaunchActivatedEventArgs e)
{
// Your code...
DTDMessaging.HandleActivatedEvent(e);
}
protected override void OnActivated(IActivatedEventArgs args)
{
// Your code...
DTDMessaging.HandleActivatedEvent(args);
}
}3. Initialization
4. Events
5. Disabling
Last updated
Was this helpful?
