diff --git a/src/Avalonia.Controls/Notifications/IManagedNotificationManager.cs b/src/Avalonia.Controls/Notifications/IManagedNotificationManager.cs index 94d927f8ca..bd57f3a86f 100644 --- a/src/Avalonia.Controls/Notifications/IManagedNotificationManager.cs +++ b/src/Avalonia.Controls/Notifications/IManagedNotificationManager.cs @@ -20,21 +20,5 @@ namespace Avalonia.Controls.Notifications /// /// The content to be displayed. void Show(object content); - - /// - /// Shows a notification. - /// - /// The content to be displayed. - /// The of the notification. - /// the expiration time of the notification after which it will automatically close. If the value is then the notification will remain open until the user closes it. - /// an Action to be run when the notification is clicked. - /// an Action to be run when the notification is closed. - /// Style-classes to ba added to the notification card - void Show(object content, - NotificationType type, - TimeSpan? expiration = null, - Action? onClick = null, - Action? onClose = null, - string[]? classes = null); } }