protected override void OnSaveOptions(string key, Stream stream)
 {
     if (key == NotificationDataKey)
     {
         formatter.Serialize(stream, notifications.GetNotificationData());
     }
 }
Esempio n. 2
0
 protected override void OnSaveOptions(string key, Stream stream)
 {
     if (key == NotificationDataKey)
     {
         logger.WriteLine(Resources.Strings.Notifications_SavingSettings);
         formatter.Serialize(stream, notifications.GetNotificationData());
     }
 }