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

ListBucketsAsync() public method

public ListBucketsAsync ( ListBucketsResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void
callback ListBucketsResponse>.AmazonServiceCallback
options AsyncOptions /// 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 void
        public void ListBucketsAsync(AmazonServiceCallback<ListBucketsRequest, ListBucketsResponse> callback, AsyncOptions options = null)
        {
            ListBucketsAsync(new ListBucketsRequest(), callback, options);
        }

Same methods

AmazonS3Client::ListBucketsAsync ( ListBucketsRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::ListBucketsAsync ( System cancellationToken = default(CancellationToken) ) : Task
AmazonS3Client::ListBucketsAsync ( ListBucketsRequest request, ListBucketsResponse>.AmazonServiceCallback callback, AsyncOptions options = null ) : void

Usage Example

Example #1
0
    // Use this for initialization
    void Start () {
        // ResultText is a label used for displaying status information
        Debug.Log("hallo1");

        


    Debug.Log("hallo2");
        S3Client = new AmazonS3Client(Credentials);
        Debug.Log("hallo3");
        ResultText.text = "Fetching all the Buckets";
        S3Client.ListBucketsAsync(new ListBucketsRequest(), (responseObject) =>
        {
            ResultText.text += "\n";
            if (responseObject.Exception == null)
            {
                ResultText.text += "Got Response \nPrinting now \n";
                responseObject.Response.Buckets.ForEach((s3b) =>
                {
                    ResultText.text += string.Format("bucket = {0}, created date = {1} \n",
                    s3b.BucketName, s3b.CreationDate);
                });
            }
            else
            {
                ResultText.text += "Got Exception \n";
            }
        });
    }
All Usage Examples Of Amazon.S3.AmazonS3Client::ListBucketsAsync
AmazonS3Client