[]
Represents methods for sending and managing notifications, allowing the sending of notifications of various levels (info, warning, error) and managing their display and dismissal.
public class Notifications
| Name | Description |
|---|---|
| DismissAll() | Dismisses all the notifications. |
| Error(string, string) | Sends an error notification. |
| Info(string, string) | Sends a general notification. Can be used to notify when any user-initiated action is complete. |
| Send(Level, string, string) | Sends a notification with the specified level, caption, and content. |
| Warning(string, string) | Sends a warning notification. |