Amazon.CognitoIdentityProvider.AmazonCognitoIdentityProviderClient.BeginConfirmForgotPassword C# (CSharp) Method

BeginConfirmForgotPassword() public method

Initiates the asynchronous execution of the ConfirmForgotPassword operation.
public BeginConfirmForgotPassword ( ConfirmForgotPasswordRequest request, AsyncCallback callback, object state ) : IAsyncResult
request Amazon.CognitoIdentityProvider.Model.ConfirmForgotPasswordRequest Container for the necessary parameters to execute the ConfirmForgotPassword operation on AmazonCognitoIdentityProviderClient.
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 BeginConfirmForgotPassword(ConfirmForgotPasswordRequest request, AsyncCallback callback, object state)
        {
            var marshaller = new ConfirmForgotPasswordRequestMarshaller();
            var unmarshaller = ConfirmForgotPasswordResponseUnmarshaller.Instance;

            return BeginInvoke<ConfirmForgotPasswordRequest>(request, marshaller, unmarshaller,
                callback, state);
        }
AmazonCognitoIdentityProviderClient