LitS3.S3Service.CopyObject C# (CSharp) Method

CopyObject() public method

Copies an object within a bucket.
public CopyObject ( string bucketName, string sourceKey, string destKey ) : void
bucketName string
sourceKey string
destKey string
return void
        public void CopyObject(string bucketName, string sourceKey, string destKey)
        {
            CopyObject(bucketName, sourceKey, bucketName, destKey);
        }

Same methods

S3Service::CopyObject ( string bucketName, string sourceKey, string destKey, CannedAcl acl ) : void
S3Service::CopyObject ( string sourceBucketName, string sourceKey, string destBucketName, string destKey ) : void
S3Service::CopyObject ( string sourceBucketName, string sourceKey, string destBucketName, string destKey, CannedAcl acl ) : void