Click or drag to resize
UploadPartCopyRequest Class
指定以某一Object作为上传某分块数据源的请求。
Inheritance Hierarchy
SystemObject
  Aliyun.OSSUploadPartCopyRequest

Namespace: Aliyun.OSS
Assembly: Aliyun.OSS (in Aliyun.OSS.dll) Version: 2.5.1.0 (2.5.1)
Syntax
public class UploadPartCopyRequest

The UploadPartCopyRequest type exposes the following members.

Constructors
  NameDescription
Public methodUploadPartCopyRequest
Initializes a new instance of the UploadPartCopyRequest class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected methodFinalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a String that represents the current Object.
(Inherited from Object.)
Top
Properties
  NameDescription
Public propertyBeginIndex
获取或设置拷贝源Object的起始位置。
Public propertyMatchingETagConstraints
如果源Object的ETAG值和用户提供的ETAG相等,则执行拷贝操作; 否则返回412 HTTP错误码(预处理失败)。
Public propertyMd5Digest
获取或设置分块(Part)数据的MD5校验值。
Public propertyModifiedSinceConstraint
如果源Object自从用户指定的时间以后被修改过,则执行拷贝操作; 否则返回412 HTTP错误码(预处理失败)。
Public propertyNonmatchingETagConstraints
如果源Object的ETAG值和用户提供的ETAG不相等,则执行拷贝操作; 否则返回412 HTTP错误码(预处理失败)。
Public propertyPartNumber
获取或设置返回上传分块(Part)的标识号码(Part Number)。 每一个上传分块(Part)都有一个标识它的号码(范围1~10000)。 对于同一个Upload ID,该号码不但唯一标识这一块数据,也标识了这块数据在整个文件中的 相对位置。如果你用同一个Part号码上传了新的数据,那么OSS上已有的这个号码的Part数据将被覆盖。
Public propertyPartSize
获取或设置返回分块(Part)数据的字节数。 除最后一个Part外,其他Part最小为5MB。
Public propertySourceBucket
获取或设置拷贝源Bucket。
Public propertySourceKey
获取或设置拷贝源Object。
Public propertyTargetBucket
获取或者设置OssObject所在Bucket的名称。
Public propertyTargetKey
获取或者设置OssObject的值。
Public propertyUnmodifiedSinceConstraint
如果传入参数中的时间等于或者晚于文件实际修改时间,则正常传输文件,并返回200 OK; 否则返回412 precondition failed错误
Public propertyUploadId
获取或设置上传Multipart上传事件的Upload ID。
Top
See Also