Partager via


CancellableTaskStatusQuery.QuickStatusNotificationEvent Event

 

Occurs when there is a quick status update on a cancellable task.

Namespace:   Microsoft.WindowsServerSolutions.Dashboard.Addins.Home
Assembly:  HomeAddinContract (in HomeAddinContract.dll)

Syntax

public event EventHandler QuickStatusNotificationEvent
public:
event EventHandler^ QuickStatusNotificationEvent {
    virtual void add(EventHandler^ value) sealed;
    virtual void remove(EventHandler^ value) sealed;
}
Public Event QuickStatusNotificationEvent As EventHandler

Implements

ITaskStatusQuery.QuickStatusNotificationEvent

Remarks

A timer is used to implement the quick status notification event. The timer interval is 10 minutes.

This event simply notifies the calling entity; it does not return any actual results. The caller should start an asynchronous query to get the result.

If necessary, you can inherit this class to implement your own event.

See Also

CancellableTaskStatusQuery Class
Microsoft.WindowsServerSolutions.Dashboard.Addins.Home Namespace

Return to top