Register() |
Registers the application using the current process filename, a default Telerik shortcut name, default AUMID and internal activator. When the internal activator is activated, it fires RadToastActivated. |
Register(string exePath, string shortcutName, string aumid) |
Registers the application using an internal activator passing the path of the executable, the name of the shortcut that will be placed in start menu, unique id of the application - recommended string - name + GUID. When the internal activator is activated, it fires RadToastActivated. |
Register() where T : RadToastNotificationActivatorBase
|
Registers the application with a custom activator using the current process filename, a default Telerik shortcut name and default AUMID. |
Register(string exePath, string shortcutName, string aumid) where T : RadToastNotificationActivatorBase
|
Registers the application using the manager, so the activator can receive notification activation. |
Unregister() |
Unregister a registered manager. |
Unregister(string shortcutName, string aumid) |
Unregister a registered manager, passing the name of the shortcut that will be removed and the unique id of the application. |
Unregister() where T : RadToastNotificationActivatorBase
|
Unregister a registered manager with a custom activator. |
Unregister(string shortcutName, string aumid) where T : RadToastNotificationActivatorBase
|
Unregister a registered manager with a custom activator, passing the name of the shortcut that will be removed and the unique id of the application. |
ShowNotification(int index) |
Shows a notification from ToastNotifications collection using its index. |
ShowNotification(string name) |
Shows a notification from ToastNotifications collection using its name. |
ShowNotification(RadToastNotification radToastNotification) |
Shows a given toast notification. |
HideNotification |
Hides the currently shown toast notification. |