public static void StopNotificationServer()
 {
     // make sure you shut down the notification server on system shut down
     if (_notificationServer != null)
     {
         _notificationServer.StopReceiveNotifications();
     }
 }
Esempio n. 2
0
 public static void StopNotificationServer()
 {
     // make sure you shut down the notification server on system shut down
     s_notificationServer?.StopReceiveNotifications();
 }