Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets or sets a value that indicates whether the invoker is in retry mode.
Namespace: Microsoft.VisualStudio.TestTools.UITest.Common
Assembly: Microsoft.VisualStudio.TestTools.UITest.Common (in Microsoft.VisualStudio.TestTools.UITest.Common.dll)
Syntax
public abstract bool InRetryMode { get; set; }
public:
property bool InRetryMode {
virtual bool get() abstract;
virtual void set(bool value) abstract;
}
abstract InRetryMode : bool with get, set
Public MustOverride Property InRetryMode As Boolean
Property Value
Type: System.Boolean
true if this invoker is in retry mode; otherwise, false. The default is false.
Remarks
Some invoker may want to do special handling when in retry mode.
See Also
UITestActionInvoker Class
Microsoft.VisualStudio.TestTools.UITest.Common Namespace
Return to top