YAMP.NotificationEventArgs.NotificationEventArgs C# (CSharp) Méthode

NotificationEventArgs() public méthode

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