ShowNotificationMessage() public method

public ShowNotificationMessage ( PeerCastStation.Core.NotificationMessage msg ) : void
msg PeerCastStation.Core.NotificationMessage
return void
Example #1
0
 public void OnMessageNotified(object sender, NotificationMessageEventArgs args)
 {
     if (notifyIconManager == null)
     {
         return;
     }
     notifyIconManager.ShowNotificationMessage(args.Message);
 }
Example #2
0
 public void ShowNotificationMessage(NotificationMessage msg)
 {
     if (notifyIconManager == null)
     {
         return;
     }
     notifyIconManager.ShowNotificationMessage(msg);
 }