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

BeginPutBucketVersioning() public method

Initiates the asynchronous execution of the PutBucketVersioning operation.
public BeginPutBucketVersioning ( Amazon.S3.Model.PutBucketVersioningRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.S3.Model.PutBucketVersioningRequest Container for the necessary parameters to execute the PutBucketVersioning 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 BeginPutBucketVersioning(PutBucketVersioningRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new PutBucketVersioningRequestMarshaller();
            var unmarshaller = PutBucketVersioningResponseUnmarshaller.Instance;

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