Partager via


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

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