YAMP.NotificationEventArgs.NotificationEventArgs C# (CSharp) Method

NotificationEventArgs() public method

Creates a new instance.
public NotificationEventArgs ( NotificationType type, string message ) : System
type NotificationType The type of notification.
message string The pure notification message.
return System
        public NotificationEventArgs(NotificationType type, string message)
        {
            Type = type;
            Message = message;
        }
NotificationEventArgs