Skip to main content

IManagedNotificationManager Interface

Definition

Assembly:Avalonia.Controls
Package:Avalonia

Represents a notification manager that can show arbitrary content. Managed notification managers can show any content.

public interface IManagedNotificationManager

Remarks

Because notification managers of this type are implemented purely in managed code, they can display arbitrary content, as opposed to notification managers which display notifications using the host operating system's notification mechanism.

Methods

NameDescription
CloseCloses a notification.
ShowShows a notification.

Close Method

Closes a notification.

public void Close(object content)

Parameters

content object

The content to be closed.

Show Method

Shows a notification.

public void Show(object content)

Parameters

content object

The content to be displayed.