Example #1
0
 protected override void NotifyInternal(int id, MFNotification notification, DateTime when, TimeSpan period)
 {
 }
Example #2
0
 public static void Notify(int id, MFNotification notification, DateTime when, TimeSpan period)
 {
     Instance.NotifyInternal(id, notification, when, period);
 }
Example #3
0
 //******************************************************************//
 // Private API
 //******************************************************************//
 protected abstract void NotifyInternal(int id, MFNotification notification, DateTime when, TimeSpan period);
Example #4
0
 public static void Notify(int id, MFNotification notification)
 {
     Instance.NotifyInternal(id, notification, DateTime.Now, TimeSpan.Zero);
 }