I'm just starting with the toast manager and notifications so I apologize if this is way off base. =)
I'm simply trying to dynamically create a new notification, based off of a template I created at design time, called "myRestart". This template is just a slightly modified News template (meaning, I've only changed some text in it really).
Dim toastNotification As RadToastNotification = toastManager.ToastNotifications("myRestart")
toastNotification.Name = "someRandomStuff12435176"
toastManager.ToastNotifications.Add(toastNotification)
When the final line of code above is run to add the notification to the manager, I get the error:
Telerik.RadToastNotificationManager.RadToastNotificationInvalidNameException: 'RadToastNotification: Name must be unqiue.'
I'm not sure what name it would be referring to other than the name property, which as you can see above I changed to some random text and still get the error.
Thank you for any help you can provide!