Serves as a delegate for handling summary requests in Configuration
Manager 2007. This delegate supports the Configuration Manager
infrastructure and is not intended to be used directly from your
code.
Namespace:
Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement (in
microsoft.configurationmanagement.dll)
Usage
Syntax
Visual Basic |
Public Delegate Function SummaryRequestHandler ( _
request As SummaryRequestType, _
id As String, _
ParamArray parameters As Object() _
) As Object
|
C# |
public delegate Object SummaryRequestHandler (
SummaryRequestType request,
string id,
params Object[] parameters
)
|
C++ |
public delegate Object^ SummaryRequestHandler (
SummaryRequestType request,
String^ id,
... array<Object^>^ parameters
)
|
J# |
/** @delegate */
public delegate Object SummaryRequestHandler (
SummaryRequestType request,
String id,
Object[] parameters
)
|
Parameters
- request
-
[in]
SummaryRequestType enumeration value that indicates the type of
request.
- id
-
[in] Request identifier.
- parameters
-
[in] Array of System.Object instances that indicate
parameters.
Return Value
System.Object instance.
Platforms
Development Platforms
Windows Server 2003, Windows Vista
Target Platforms
Windows Server 2003,Windows Vista
See Also