Amazon.Lambda.AmazonLambdaClient.BeginListFunctions C# (CSharp) Method

BeginListFunctions() public method

Initiates the asynchronous execution of the ListFunctions operation.
public BeginListFunctions ( Amazon.Lambda.Model.ListFunctionsRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.Lambda.Model.ListFunctionsRequest Container for the necessary parameters to execute the ListFunctions operation on AmazonLambdaClient.
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 BeginListFunctions(ListFunctionsRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new ListFunctionsRequestMarshaller();
            var unmarshaller = ListFunctionsResponseUnmarshaller.Instance;

            return BeginInvoke<ListFunctionsRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
AmazonLambdaClient