Amazon.SQS.AmazonSQSClient.BeginListQueues C# (CSharp) Method

BeginListQueues() public method

Initiates the asynchronous execution of the ListQueues operation.
public BeginListQueues ( ListQueuesRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.SQS.Model.ListQueuesRequest Container for the necessary parameters to execute the ListQueues operation on AmazonSQSClient.
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 BeginListQueues(ListQueuesRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new ListQueuesRequestMarshaller();
            var unmarshaller = ListQueuesResponseUnmarshaller.Instance;

            return BeginInvoke<ListQueuesRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
AmazonSQSClient