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

BeginDeleteIntegration() public method

Initiates the asynchronous execution of the DeleteIntegration operation.
public BeginDeleteIntegration ( Amazon.APIGateway.Model.DeleteIntegrationRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.APIGateway.Model.DeleteIntegrationRequest Container for the necessary parameters to execute the DeleteIntegration 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 BeginDeleteIntegration(DeleteIntegrationRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new DeleteIntegrationRequestMarshaller();
            var unmarshaller = DeleteIntegrationResponseUnmarshaller.Instance;

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