Amazon.S3.AmazonS3Client.CopyPartAsync C# (CSharp) Method

CopyPartAsync() public method

Initiates the asynchronous execution of the CopyPart operation.
public CopyPartAsync ( CopyPartRequest request, System cancellationToken = default(CancellationToken) ) : Task
request Amazon.S3.Model.CopyPartRequest Container for the necessary parameters to execute the CopyPart operation.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
return Task
        public Task<CopyPartResponse> CopyPartAsync(CopyPartRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new CopyPartRequestMarshaller();
            var unmarshaller = CopyPartResponseUnmarshaller.Instance;

            return InvokeAsync<CopyPartRequest,CopyPartResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }

Same methods

AmazonS3Client::CopyPartAsync ( string sourceBucket, string sourceKey, string destinationBucket, string destinationKey, string uploadId, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::CopyPartAsync ( string sourceBucket, string sourceKey, string sourceVersionId, string destinationBucket, string destinationKey, string uploadId, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::CopyPartAsync ( CopyPartRequest request, CopyPartResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client::CopyPartAsync ( string sourceBucket, string sourceKey, string destinationBucket, string destinationKey, string uploadId, CopyPartResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client::CopyPartAsync ( string sourceBucket, string sourceKey, string sourceVersionId, string destinationBucket, string destinationKey, string uploadId, CopyPartResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client