Amazon.S3.AmazonS3Client.CopyObjectAsync C# (CSharp) 메소드

CopyObjectAsync() 공개 메소드

Initiates the asynchronous execution of the CopyObject operation.
public CopyObjectAsync ( CopyObjectRequest request, System cancellationToken = default(CancellationToken) ) : Task
request Amazon.S3.Model.CopyObjectRequest Container for the necessary parameters to execute the CopyObject operation.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
리턴 Task
        public Task<CopyObjectResponse> CopyObjectAsync(CopyObjectRequest request, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new CopyObjectRequestMarshaller();
            var unmarshaller = CopyObjectResponseUnmarshaller.Instance;

            return InvokeAsync<CopyObjectRequest,CopyObjectResponse>(request, marshaller, 
                unmarshaller, cancellationToken);
        }

Same methods

AmazonS3Client::CopyObjectAsync ( string sourceBucket, string sourceKey, string destinationBucket, string destinationKey, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::CopyObjectAsync ( string sourceBucket, string sourceKey, string sourceVersionId, string destinationBucket, string destinationKey, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::CopyObjectAsync ( CopyObjectRequest request, CopyObjectResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client::CopyObjectAsync ( string sourceBucket, string sourceKey, string destinationBucket, string destinationKey, CopyObjectResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client::CopyObjectAsync ( string sourceBucket, string sourceKey, string sourceVersionId, string destinationBucket, string destinationKey, CopyObjectResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
AmazonS3Client