Table of Contents

Interface IManagedNotificationManager

Namespace
Avalonia.Controls.Notifications
Assembly
Avalonia.Controls.dll

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

[NotClientImplementable]
public interface IManagedNotificationManager : INotificationManager
Inherited Members

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

Close(object)

Closes a notification.

void Close(object content)

Parameters

content object

The content to be closed.

Show(object)

Shows a notification.

void Show(object content)

Parameters

content object

The content to be displayed.