PeerCastStation.GUI.UserInterface.ShowNotificationMessage C# (CSharp) Метод

ShowNotificationMessage() публичный Метод

public ShowNotificationMessage ( PeerCastStation.Core.NotificationMessage msg ) : void
msg PeerCastStation.Core.NotificationMessage
Результат void
    public void ShowNotificationMessage(NotificationMessage msg)
    {
      if (mainForm==null || mainForm.IsDisposed) return;
      mainForm.Invoke(new Action(() => {
        if (!mainForm.IsDisposed) {
          mainForm.ShowNotificationMessage(msg);
        }
      }));
    }
  }