Interface IUseExecutionStrategy
Represents a component that uses an IExecutionStrategy internally to perform its work.
Namespace: IRM.TransientFaultHandling
Assembly: IRM.dll
Syntax
public interface IUseExecutionStrategy
Properties
Strategy
Gets the IExecutionStrategy that is used by the component.
Declaration
IExecutionStrategy Strategy { get; }
Property Value
IExecutionStrategy
|
Suspended
Indicates whether the strategy is suspended. The strategy is typically suspending while executing to avoid recursive execution from nested operations.
Declaration
bool Suspended { get; set; }
Property Value
Boolean
|