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.

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");

Please note that your users might need to allow notifications in their windows system. Read more.

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

Last updated