LiveConnectClient moveFromPath:toDestination:delegate method

Performs an asynchronous move of a resource to a different folder on the user's Microsoft OneDrive account for a given path, destination, and optionally, a LiveOperationDelegate.

Signature

- (LiveOperation *) moveFromPath:(NSString *)path
                   toDestination:(NSString *)destination
                        delegate:(id <LiveOperationDelegate>)delegate;

Parameters

Name

Datatype

Description

path

NSString

Required. The path or object ID of the resource to move.

destination

NSString

Required. The object ID of the destination folder for the resource being moved.

delegate

id <LiveOperationDelegate>

Optional. An instance of a class that implements the LiveOperationDelegate protocol.

Returns

Type: LiveOperation

The asynchronous operation that is used to track the asynchronous REST reference request and get response data once the operation completes.

Defined in

LiveConnectClient.h

Remarks

This method uses an HTTP MOVE call to the Live SDKREST reference.

See also

LiveConnectClient class