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

Usage

Visual Basic
Dim instance As SmsBackgroundWorker
Dim handler As EventHandler(Of QueryProcessorObjectEventArgs)

AddHandler instance.QueryProcessorObjectReady, handler

Syntax

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

/** @event */
public void remove_QueryProcessorObjectReady (EventHandler<QueryProcessorObjectEventArgs> value)
JScript

Remarks

This event is fired for each object that is retrieved for the requested query.

Arguments for this event are represented by a QueryProcessorObjectEventArgs 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