Share via


RetryPolicy.ExecuteAction Method (Action)

 

Repetitively executes the specified action while it satisfies the current retry policy.

Namespace:   Microsoft.WindowsAzure.Common.TransientFaultHandling
Assembly:  Microsoft.WindowsAzure.Common (in Microsoft.WindowsAzure.Common.dll)

Syntax

public virtual void ExecuteAction(
    Action action
)
public:
virtual void ExecuteAction(
    Action^ action
)
abstract ExecuteAction : 
        action:Action -> unit
override ExecuteAction : 
        action:Action -> unit
Public Overridable Sub ExecuteAction (
    action As Action
)

Parameters

  • action
    Type: System.Action

    A delegate that represents the executable action that doesn't return any results.

See Also

ExecuteAction Overload
RetryPolicy Class
Microsoft.WindowsAzure.Common.TransientFaultHandling Namespace

Return to top