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

BeginPutObject() public method

Initiates the asynchronous execution of the PutObject operation.
public BeginPutObject ( PutObjectRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.S3.Model.PutObjectRequest Container for the necessary parameters to execute the PutObject operation on AmazonS3Client.
callback AsyncCallback An AsyncCallback delegate that is invoked when the operation completes.
state object A user-defined state object that is passed to the callback procedure. Retrieve this object from within the callback /// procedure using the AsyncState property.
return IAsyncResult
        public IAsyncResult BeginPutObject(PutObjectRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new PutObjectRequestMarshaller();
            var unmarshaller = PutObjectResponseUnmarshaller.Instance;

            return BeginInvoke<PutObjectRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
AmazonS3Client