Service.onRemoveChildComplete event
The onRemoveChildComplete event occurs, and a callback handler is invoked, when a Service.RemoveChild operation has completed.
Service.onRemoveChildComplete(
hrStatus,
childPUID
)
-
hrStatus
-
Contains the overall status of the delete operation (success or failure).
-
childPUID
-
The Persistent Unique ID (PUID) of the child WPDObject that was removed.
This event does not return a value.
To enable asynchronous behavior, set the handler for this event before calling the Service.RemoveChild method.
The following code shows the handler-function syntax for the onRemoveChildComplete event.
function HandlerFunction(hrStatus, childPUID)
{
// Code to handle a completed asynchronous RemoveChild operation.
}
// Set the event handler.
Service.onRemoveChildComplete = HandlerFunction;
Minimum supported client |
Windows 7 [desktop apps only] |
Minimum supported server |
Windows Server 2008 R2 [desktop apps only] |