Notifies that the query processor setup report is ready. Namespace: Microsoft.ConfigurationManagement.ManagementProvider
Assembly: Microsoft.ConfigurationManagement.ManagementProvider (in microsoft.configurationmanagement.managementprovider.dll)

Usage

Visual Basic
Dim instance As QueryProcessorBase
Dim handler As EventHandler(Of QueryProcessorSetupEventArgs)

AddHandler instance.QueryProcessorSetupReport, handler

Syntax

Visual Basic
Public Event QueryProcessorSetupReport As EventHandler(Of QueryProcessorSetupEventArgs)
C#
public event EventHandler<QueryProcessorSetupEventArgs> QueryProcessorSetupReport
C++
public:
event EventHandler<QueryProcessorSetupEventArgs^>^ QueryProcessorSetupReport {
		void add (EventHandler<QueryProcessorSetupEventArgs^>^ value);
		void remove (EventHandler<QueryProcessorSetupEventArgs^>^ value);
}
J#
/** @event */
public void add_QueryProcessorSetupReport (EventHandler<QueryProcessorSetupEventArgs> value)

/** @event */
public void remove_QueryProcessorSetupReport (EventHandler<QueryProcessorSetupEventArgs> value)
JScript

Remarks

Arguments for this event are represented by a QueryProcessorSetupEventArgs object.

Views can subscribe to this event to get called to supply actions for the query processor in the event handler.


Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also