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 for a write error CIM operation.
Namespace:   Microsoft.Management.Infrastructure.Options
Assembly:  Microsoft.Management.Infrastructure (in Microsoft.Management.Infrastructure.dll)
Syntax
public delegate CimResponseType WriteErrorCallback(
    CimInstance cimError
)
public delegate CimResponseType WriteErrorCallback(
    CimInstance^ cimError
)
type WriteErrorCallback = 
    delegate of 
        cimError:CimInstance -> CimResponseType
Public Delegate Function WriteErrorCallback (
    cimError As CimInstance
) As CimResponseType
Parameters
- cimError 
 Type: Microsoft.Management.Infrastructure.CimInstance- The error to be displayed. 
Return Value
Type: Microsoft.Management.Infrastructure.Options.CimResponseType
Returns a CimResponseType value that specifies the response to the CIM operation request.
See Also
Microsoft.Management.Infrastructure.Options Namespace
Return to top