Note: This API is now obsolete.
            Deprecated. Use ResumableCopyObject instead.
            Copy the specified file with optional checkpoint support.
            
 
Namespace: Aliyun.OSSAssembly: Aliyun.OSS (in Aliyun.OSS.dll) Version: 2.8.0.0 (2.8.0)
Syntax[ObsoleteAttribute("CopyBigObject is deprecated, please use ResumableCopyObject instead")]
CopyObjectResult CopyBigObject(
	CopyObjectRequest copyObjectRequest,
	Nullable<long> partSize = null,
	string checkpointDir = null
)<ObsoleteAttribute("CopyBigObject is deprecated, please use ResumableCopyObject instead")>
Function CopyBigObject ( 
	copyObjectRequest As CopyObjectRequest,
	Optional partSize As Nullable(Of Long) = Nothing,
	Optional checkpointDir As String = Nothing
) As CopyObjectResult[ObsoleteAttribute(L"CopyBigObject is deprecated, please use ResumableCopyObject instead")]
CopyObjectResult^ CopyBigObject(
	CopyObjectRequest^ copyObjectRequest, 
	Nullable<long long> partSize = nullptr, 
	String^ checkpointDir = nullptr
)
[<ObsoleteAttribute("CopyBigObject is deprecated, please use ResumableCopyObject instead")>]
abstract CopyBigObject : 
        copyObjectRequest : CopyObjectRequest * 
        ?partSize : Nullable<int64> * 
        ?checkpointDir : string 
(* Defaults:
        let _partSize = defaultArg partSize null
        let _checkpointDir = defaultArg checkpointDir null
*)
-> CopyObjectResult 
Parameters
- copyObjectRequest
 - Type: Aliyun.OSSCopyObjectRequest
the request parameter - partSize (Optional)
 - Type: SystemNullableInt64
part size. If the part size is not specified, or less than DefaultPartSize,
            PartSizeLowerLimit will be used instead.
             - checkpointDir (Optional)
 - Type: SystemString
The checkpoint file folder. If it's not specified, checkpoint information is not stored and resumnable upload will not be supported in this case. 
Return Value
Type: 
CopyObjectResultCopyObjectResult instance.
See Also