Notification

The Notification component adds desktop notifications to Wisej.NET applications. With this component your web apps can pop notifications on the user’s desktop even when the browser is minimized.

Notificatioin Source Code

How to Use

The Notification extension can be added to a Wisej.NET project using NuGet Package Manager.

First step is to check if the user´s browser supports Notifications. Use the property IsSupported for this step.

Then you can simply add and show Notifications with the Show method:

notificationObj.Show("Notification", "Notification after executing task");

Find more information in our Notification example in C# or in VB.NET.

Last updated

Was this helpful?