Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents a callback to retrieve a CIM class for the specified server, namespace, and class name.
Namespace: Microsoft.Management.Infrastructure.Serialization
Assembly: Microsoft.Management.Infrastructure (in Microsoft.Management.Infrastructure.dll)
Syntax
public delegate CimClass OnClassNeeded(
string serverName,
string namespaceName,
string className
)
public delegate CimClass^ OnClassNeeded(
String^ serverName,
String^ namespaceName,
String^ className
)
type OnClassNeeded =
delegate of
serverName:string *
namespaceName:string *
className:string -> CimClass
Public Delegate Function OnClassNeeded (
serverName As String,
namespaceName As String,
className As String,
) As CimClass
Parameters
serverName
Type: System.StringThe name of the server for the CIM class.
namespaceName
Type: System.StringThe name of the namespace for the CIM class.
className
Type: System.StringThe name of the class for the CIM class.
Return Value
Type: CimClass class
Returns the CIM class corresponding to the specified arguments, or null if the class can't be found.