Storage.onAddChildComplete event
The onAddChildComplete event occurs, and a callback handler is invoked, when a Storage.AddChild operation has completed.
Storage.onAddChildComplete(
hrStatus,
childObject
)
-
hrStatus
-
Contains the overall status of the add operation (success or failure).
-
childObject
-
A reference to the newly added child WPDObject.
This event does not return a value.
To enable asynchronous behavior, set the handler for this event before calling the Storage.AddChild method.
The following code shows the handler-function syntax for the onAddChildComplete event.
function HandlerFunction(hrStatus, childObject)
{
// Code to handle a completed asynchronous AddChild operation.
}
// Set the event handler.
Storage.onAddChildComplete = HandlerFunction;
Minimum supported client |
Windows 7 [desktop apps only] |
Minimum supported server |
Windows Server 2008 R2 [desktop apps only] |