Click or drag to resize
IntuitRetryPolicyExecuteAction Method (ActionAsyncCallback, ActionIAsyncResult, Action, ActionException)
Repetitively executes the specified asynchronous action while it satisfies the current retry policy.

Namespace:  Intuit.Ipp.Retry
Assembly:  Intuit.Ipp.Retry (in Intuit.Ipp.Retry.dll) Version: 4.0.0.0 (4.0.0.0)
Syntax
C#
public void ExecuteAction(
	Action<AsyncCallback> beginAction,
	Action<IAsyncResult> endAction,
	Action successHandler,
	Action<Exception> faultHandler
)

Parameters

beginAction
Type: SystemActionAsyncCallback
The begin method of the async pattern.
endAction
Type: SystemActionIAsyncResult
The end method of the async pattern.
successHandler
Type: SystemAction
The action to perform when the async operation is done.
faultHandler
Type: SystemActionException
The fault handler delegate that will be triggered if the operation cannot be successfully invoked despite retry attempts.
See Also