Amazon.APIGateway.AmazonAPIGatewayClient.BeginTestInvokeAuthorizer C# (CSharp) Method

BeginTestInvokeAuthorizer() public method

Initiates the asynchronous execution of the TestInvokeAuthorizer operation.
public BeginTestInvokeAuthorizer ( TestInvokeAuthorizerRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.APIGateway.Model.TestInvokeAuthorizerRequest Container for the necessary parameters to execute the TestInvokeAuthorizer operation on AmazonAPIGatewayClient.
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 BeginTestInvokeAuthorizer(TestInvokeAuthorizerRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new TestInvokeAuthorizerRequestMarshaller();
            var unmarshaller = TestInvokeAuthorizerResponseUnmarshaller.Instance;

            return BeginInvoke<TestInvokeAuthorizerRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
AmazonAPIGatewayClient