YAMP.SystemFunction.RaiseNotification C# (CSharp) Method

RaiseNotification() protected method

Raises a notification event.
protected RaiseNotification ( NotificationType notificationType, String message ) : void
notificationType NotificationType The type of notification.
message String The message to use.
return void
        protected void RaiseNotification(NotificationType notificationType, String message)
        {
            Context.RaiseNotification(new NotificationEventArgs(notificationType, message));
        }