internal CopyObjectResponse CopyObject(CopyObjectRequest request) { var marshaller = new CopyObjectRequestMarshaller(); var unmarshaller = CopyObjectResponseUnmarshaller.Instance; return Invoke<CopyObjectRequest,CopyObjectResponse>(request, marshaller, unmarshaller); }
/// <summary> /// Initiates the asynchronous execution of the CopyObject operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CopyObject 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<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); }
IAsyncResult invokeCopyObject(CopyObjectRequest copyObjectRequest, AsyncCallback callback, object state, bool synchronized) { IRequest irequest = new CopyObjectRequestMarshaller().Marshall(copyObjectRequest); var unmarshaller = CopyObjectResponseUnmarshaller.GetInstance(); AsyncResult result = new AsyncResult(irequest, callback, state, synchronized, signer, unmarshaller); Invoke(result); return result; }
/// <summary> /// Initiates the asynchronous execution of the CopyObject 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 CopyObject 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 CopyObjectAsync(CopyObjectRequest request, AmazonServiceCallback<CopyObjectRequest, CopyObjectResponse> callback, AsyncOptions options = null) { if (AWSConfigs.HttpClient == AWSConfigs.HttpClientOption.UnityWWW) { throw new InvalidOperationException("CopyObject is only allowed with AWSConfigs.HttpClientOption.UnityWebRequest API option"); } options = options == null?new AsyncOptions():options; var marshaller = new CopyObjectRequestMarshaller(); var unmarshaller = CopyObjectResponseUnmarshaller.Instance; Action<AmazonWebServiceRequest, AmazonWebServiceResponse, Exception, AsyncOptions> callbackHelper = null; if(callback !=null ) callbackHelper = (AmazonWebServiceRequest req, AmazonWebServiceResponse res, Exception ex, AsyncOptions ao) => { AmazonServiceResult<CopyObjectRequest,CopyObjectResponse> responseObject = new AmazonServiceResult<CopyObjectRequest,CopyObjectResponse>((CopyObjectRequest)req, (CopyObjectResponse)res, ex , ao.State); callback(responseObject); }; BeginInvoke<CopyObjectRequest>(request, marshaller, unmarshaller, options, callbackHelper); }
/// <summary> /// Initiates the asynchronous execution of the CopyObject operation. /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CopyObject 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 EndCopyObject /// operation.</returns> public IAsyncResult BeginCopyObject(CopyObjectRequest request, AsyncCallback callback, object state) { var marshaller = new CopyObjectRequestMarshaller(); var unmarshaller = CopyObjectResponseUnmarshaller.Instance; return BeginInvoke<CopyObjectRequest>(request, marshaller, unmarshaller, callback, state); }
/// <summary> /// Initiates the asynchronous execution of the CopyObject operation. /// <seealso cref="Amazon.S3.IAmazonS3.CopyObject"/> /// </summary> /// /// <param name="request">Container for the necessary parameters to execute the CopyObject 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<CopyObjectResponse> CopyObjectAsync(CopyObjectRequest request, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new CopyObjectRequestMarshaller(); var unmarshaller = CopyObjectResponseUnmarshaller.GetInstance(); return Invoke<IRequest, CopyObjectRequest, CopyObjectResponse>(request, marshaller, unmarshaller, signer, cancellationToken); }
/// <summary> /// <para>Creates a copy of an object that is already stored in Amazon S3.</para> /// </summary> /// /// <param name="copyObjectRequest">Container for the necessary parameters to execute the CopyObject service method on AmazonS3.</param> /// /// <returns>The response from the CopyObject 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<CopyObjectResponse> CopyObjectAsync(CopyObjectRequest copyObjectRequest, CancellationToken cancellationToken = default(CancellationToken)) { var marshaller = new CopyObjectRequestMarshaller(); var unmarshaller = CopyObjectResponseUnmarshaller.GetInstance(); var response = await Invoke<IRequest, CopyObjectRequest, CopyObjectResponse>(copyObjectRequest, marshaller, unmarshaller, signer, cancellationToken) .ConfigureAwait(continueOnCapturedContext: false); return response; }