Interface INotificationManager
- Namespace
- Avalonia.Controls.Notifications
- Assembly
- Avalonia.Controls.dll
Represents a notification manager that can be used to show notifications in a window or using the host operating system.
[NotClientImplementable]
public interface INotificationManager
Methods
Close(INotification)
Closes a notification.
void Close(INotification notification)
Parameters
notification
INotificationThe notification to be closed.
CloseAll()
Closes all notifications.
void CloseAll()
Show(INotification)
Show a notification.
void Show(INotification notification)
Parameters
notification
INotificationThe notification to be displayed.