Container for the parameters to the CopyPart operation.

Uploads a part by copying data from an existing object as data source.

Inheritance: Amazon.Runtime.AmazonWebServiceRequest
Example #1
0
        /// <summary>
        /// Initiates the asynchronous execution of the CopyPart operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the CopyPart operation.</param>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
        /// <returns>The task object representing the asynchronous operation.</returns>
        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);
        }
 IAsyncResult invokeCopyPart(CopyPartRequest copyPartRequest, AsyncCallback callback, object state, bool synchronized)
 {
     IRequest irequest = new CopyPartRequestMarshaller().Marshall(copyPartRequest);
     var unmarshaller = CopyPartResponseUnmarshaller.GetInstance();
     AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller);
     Invoke(result);
     return result;
 }
Example #3
0
        internal CopyPartResponse CopyPart(CopyPartRequest request)
        {
            var marshaller = new CopyPartRequestMarshaller();
            var unmarshaller = CopyPartResponseUnmarshaller.Instance;

            return Invoke<CopyPartRequest,CopyPartResponse>(request, marshaller, unmarshaller);
        }
 /// <summary>
 /// <para>Uploads a part by copying data from an existing object as data source.</para>
 /// </summary>
 /// 
 /// <param name="copyPartRequest">Container for the necessary parameters to execute the CopyPart service method on AmazonS3.</param>
 /// 
 /// <returns>The response from the CopyPart service method, as returned by AmazonS3.</returns>
 /// 
 public CopyPartResponse CopyPart(CopyPartRequest copyPartRequest)
 {
     IAsyncResult asyncResult = invokeCopyPart(copyPartRequest, null, null, true);
     return EndCopyPart(asyncResult);
 }
 /// <summary>
 /// Initiates the asynchronous execution of the CopyPart operation.
 /// <seealso cref="Amazon.S3.IAmazonS3.CopyPart"/>
 /// </summary>
 /// 
 /// <param name="copyPartRequest">Container for the necessary parameters to execute the CopyPart operation on AmazonS3.</param>
 /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
 /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
 ///          procedure using the AsyncState property.</param>
 /// 
 /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndCopyPart
 ///         operation.</returns>
 public IAsyncResult BeginCopyPart(CopyPartRequest copyPartRequest, AsyncCallback callback, object state)
 {
     return invokeCopyPart(copyPartRequest, callback, state, false);
 }
Example #6
0
 /// <summary>
 /// Uploads a part by copying data from an existing object as data source.
 /// This API is supported only when AWSConfigs.HttpClient is set to AWSConfigs.HttpClientOption.UnityWebRequest, the default value of this configuration option is AWSConfigs.HttpClientOption.UnityWWW
 /// </summary>
 /// <param name="sourceBucket">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="sourceKey">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="sourceVersionId">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="destinationBucket">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="destinationKey">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="uploadId">Upload ID identifying the multipart upload whose part is being copied.</param>
 /// <param name="callback">An Action delegate that is invoked when the operation completes.</param>
 /// <param name="options">
 ///     A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
 ///     procedure using the AsyncState property.
 /// </param>
 /// 
 /// <returns>The response from the CopyPart service method, as returned by S3.</returns>
 public void CopyPartAsync(string sourceBucket, string sourceKey, string sourceVersionId, string destinationBucket, string destinationKey, string uploadId,  AmazonServiceCallback<CopyPartRequest, CopyPartResponse> callback, AsyncOptions options = null)
 {
     var request = new CopyPartRequest();
     request.SourceBucket = sourceBucket;
     request.SourceKey = sourceKey;
     request.SourceVersionId = sourceVersionId;
     request.DestinationBucket = destinationBucket;
     request.DestinationKey = destinationKey;
     request.UploadId = uploadId;
     CopyPartAsync(request, callback, options);
 }
Example #7
0
 /// <summary>
 /// Initiates the asynchronous execution of the CopyPart operation.
 /// This API is supported only when AWSConfigs.HttpClient is set to AWSConfigs.HttpClientOption.UnityWebRequest, the default value for this configuration option is AWSConfigs.HttpClientOption.UnityWWW
 /// </summary>
 /// 
 /// <param name="request">Container for the necessary parameters to execute the CopyPart operation on AmazonS3Client.</param>
 /// <param name="callback">An Action delegate that is invoked when the operation completes.</param>
 /// <param name="options">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
 ///          procedure using the AsyncState property.</param>
 public void CopyPartAsync(CopyPartRequest request, AmazonServiceCallback<CopyPartRequest, CopyPartResponse> callback, AsyncOptions options = null)
 {
     if (AWSConfigs.HttpClient == AWSConfigs.HttpClientOption.UnityWWW)
     {
         throw new InvalidOperationException("CopyPart is only allowed with AWSConfigs.HttpClientOption.UnityWebRequest API option");
     }
     options = options == null?new AsyncOptions():options;
     var marshaller = new CopyPartRequestMarshaller();
     var unmarshaller = CopyPartResponseUnmarshaller.Instance;
     Action<AmazonWebServiceRequest, AmazonWebServiceResponse, Exception, AsyncOptions> callbackHelper = null;
     if(callback !=null )
         callbackHelper = (AmazonWebServiceRequest req, AmazonWebServiceResponse res, Exception ex, AsyncOptions ao) => { 
             AmazonServiceResult<CopyPartRequest,CopyPartResponse> responseObject 
                     = new AmazonServiceResult<CopyPartRequest,CopyPartResponse>((CopyPartRequest)req, (CopyPartResponse)res, ex , ao.State);    
                 callback(responseObject); 
         };
     BeginInvoke<CopyPartRequest>(request, marshaller, unmarshaller, options, callbackHelper);
 }
Example #8
0
 /// <summary>
 /// Uploads a part by copying data from an existing object as data source.
 /// </summary>
 /// <param name="sourceBucket">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="sourceKey">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="sourceVersionId">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="destinationBucket">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="destinationKey">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="uploadId">Upload ID identifying the multipart upload whose part is being copied.</param>
 /// 
 /// <returns>The response from the CopyPart service method, as returned by S3.</returns>
 public CopyPartResponse CopyPart(string sourceBucket, string sourceKey, string sourceVersionId, string destinationBucket, string destinationKey, string uploadId)
 {
     var request = new CopyPartRequest();
     request.SourceBucket = sourceBucket;
     request.SourceKey = sourceKey;
     request.SourceVersionId = sourceVersionId;
     request.DestinationBucket = destinationBucket;
     request.DestinationKey = destinationKey;
     request.UploadId = uploadId;
     return CopyPart(request);
 }
Example #9
0
 /// <summary>
 /// Uploads a part by copying data from an existing object as data source.
 /// </summary>
 /// <param name="sourceBucket">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="sourceKey">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="sourceVersionId">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="destinationBucket">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="destinationKey">A property of CopyPartRequest used to execute the CopyPart service method.</param>
 /// <param name="uploadId">Upload ID identifying the multipart upload whose part is being copied.</param>
 /// <param name="cancellationToken">
 ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
 /// </param>
 /// 
 /// <returns>The response from the CopyPart service method, as returned by S3.</returns>
 public Task<CopyPartResponse> CopyPartAsync(string sourceBucket, string sourceKey, string sourceVersionId, string destinationBucket, string destinationKey, string uploadId, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
 {
     var request = new CopyPartRequest();
     request.SourceBucket = sourceBucket;
     request.SourceKey = sourceKey;
     request.SourceVersionId = sourceVersionId;
     request.DestinationBucket = destinationBucket;
     request.DestinationKey = destinationKey;
     request.UploadId = uploadId;
     return CopyPartAsync(request, cancellationToken);
 }
        /// <summary>
        /// Initiates the asynchronous execution of the CopyPart operation.
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the CopyPart operation on AmazonS3Client.</param>
        /// <param name="callback">An AsyncCallback delegate that is invoked when the operation completes.</param>
        /// <param name="state">A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback
        ///          procedure using the AsyncState property.</param>
        /// 
        /// <returns>An IAsyncResult that can be used to poll or wait for results, or both; this value is also needed when invoking EndCopyPart
        ///         operation.</returns>
        public IAsyncResult BeginCopyPart(CopyPartRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new CopyPartRequestMarshaller();
            var unmarshaller = CopyPartResponseUnmarshaller.Instance;

            return BeginInvoke<CopyPartRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
Example #11
0
        /// <summary>
        /// Initiates the asynchronous execution of the CopyPart operation.
        /// <seealso cref="Amazon.S3.IAmazonS3.CopyPart"/>
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the CopyPart operation.</param>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
        /// <returns>The task object representing the asynchronous operation.</returns>
		public Task<CopyPartResponse> CopyPartAsync(CopyPartRequest request, CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new CopyPartRequestMarshaller();
            var unmarshaller = CopyPartResponseUnmarshaller.GetInstance();
            return Invoke<IRequest, CopyPartRequest, CopyPartResponse>(request, marshaller, unmarshaller, signer, cancellationToken);
        }
Example #12
0
        /// <summary>
        /// <para>Uploads a part by copying data from an existing object as data source.</para>
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the CopyPart service method on AmazonS3.</param>
        /// 
        /// <returns>The response from the CopyPart service method, as returned by AmazonS3.</returns>
		public CopyPartResponse CopyPart(CopyPartRequest request)
        {
            var task = CopyPartAsync(request);
            try
            {
                return task.Result;
            }
            catch(AggregateException e)
            {
                throw e.InnerException;
            }
        }
Example #13
0
        /// <summary>
        /// <para>Uploads a part by copying data from an existing object as data source.</para>
        /// </summary>
        /// 
        /// <param name="copyPartRequest">Container for the necessary parameters to execute the CopyPart service method on AmazonS3.</param>
        /// 
        /// <returns>The response from the CopyPart service method, as returned by AmazonS3.</returns>
        /// <param name="cancellationToken">
        ///     A cancellation token that can be used by other objects or threads to receive notice of cancellation.
        /// </param>
		public async Task<CopyPartResponse> CopyPartAsync(CopyPartRequest copyPartRequest, CancellationToken cancellationToken = default(CancellationToken))
        {
            var marshaller = new CopyPartRequestMarshaller();
            var unmarshaller = CopyPartResponseUnmarshaller.GetInstance();
            var response = await Invoke<IRequest, CopyPartRequest, CopyPartResponse>(copyPartRequest, marshaller, unmarshaller, signer, cancellationToken)
                .ConfigureAwait(continueOnCapturedContext: false);
            return response;
        }
Example #14
0
        /// <summary>
        /// <para>Uploads a part by copying data from an existing object as data source.</para>
        /// </summary>
        /// 
        /// <param name="request">Container for the necessary parameters to execute the CopyPart service method on AmazonS3.</param>
        /// 
        /// <returns>The response from the CopyPart service method, as returned by AmazonS3.</returns>
		public CopyPartResponse CopyPart(CopyPartRequest request)
        {
            var task = CopyPartAsync(request);
            try
            {
                return task.Result;
            }
            catch(AggregateException e)
            {
                ExceptionDispatchInfo.Capture(e.InnerException).Throw();
                return null;
            }
        }