Notifier.RaiseNotifications Method (IList<Notification>, IList<Action>)
Raises a list of persistent notifications that are managed by the Notifications Provider.
Namespace: Microsoft.WindowsServerSolutions.Common.ProviderFramework.Notifications
Assembly: CoreProviders (in CoreProviders.dll)
Syntax
public Action RaiseNotifications(
IList<Notification> newNotificationList,
out IList<Action> clearMethods
)
public:
Action^ RaiseNotifications(
IList<Notification^>^ newNotificationList,
[OutAttribute] IList<Action^>^% clearMethods
)
Public Function RaiseNotifications (
newNotificationList As IList(Of Notification),
<OutAttribute> ByRef clearMethods As IList(Of Action)
) As Action
Parameters
newNotificationList
Type: System.Collections.Generic.IList<Notification>A list of Notification objects to raise. If any of the notifications have been raised before, they will be replaced.
clearMethods
Type: System.Collections.Generic.IList<Action>A list of actions that can be used to clear individual notifications in the list.
Return Value
Type: System.Action
An instance of Action, which defines the delegate that can be used to clear the notifications.
Remarks
This method can be used to raise new persistent notifications, or to refresh an existing notifications with new data.
See Also
Notifier Class
Microsoft.WindowsServerSolutions.Common.ProviderFramework.Notifications Namespace
Return to top