IOssResumableCopyObject Method |
Resumable object copy.
If the file size is less than part size, normal file upload is used; otherwise multipart upload is used.
Namespace: Aliyun.OSSAssembly: Aliyun.OSS (in Aliyun.OSS.dll) Version: 2.8.0.0 (2.8.0)
Syntax CopyObjectResult ResumableCopyObject(
CopyObjectRequest copyObjectRequest,
string checkpointDir,
Nullable<long> partSize = null
)
Function ResumableCopyObject (
copyObjectRequest As CopyObjectRequest,
checkpointDir As String,
Optional partSize As Nullable(Of Long) = Nothing
) As CopyObjectResult
CopyObjectResult^ ResumableCopyObject(
CopyObjectRequest^ copyObjectRequest,
String^ checkpointDir,
Nullable<long long> partSize = nullptr
)
abstract ResumableCopyObject :
copyObjectRequest : CopyObjectRequest *
checkpointDir : string *
?partSize : Nullable<int64>
(* Defaults:
let _partSize = defaultArg partSize null
*)
-> CopyObjectResult
Parameters
- copyObjectRequest
- Type: Aliyun.OSSCopyObjectRequest
request parameter - checkpointDir
- Type: SystemString
checkpoint file folder - partSize (Optional)
- Type: SystemNullableInt64
The part size.
Return Value
Type:
CopyObjectResultCopyObjectResult instance
See Also