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 interpreter is in retry mode.
Namespace: Microsoft.VisualStudio.TestTools.UITest.CodeGeneration
Assembly: Microsoft.VisualStudio.TestTools.UITest.CodeGeneration (in Microsoft.VisualStudio.TestTools.UITest.CodeGeneration.dll)
Syntax
public override bool InRetryMode { get; set; }
public:
property bool InRetryMode {
virtual bool get() override;
virtual void set(bool value) override;
}
override InRetryMode : bool with get, set
Public Overrides Property InRetryMode As Boolean
Property Value
Type: System.Boolean
true if the interpreter is in retry mode; otherwise, false. The default is false.
Remarks
Avoid using cache when in retry mode.
See Also
UIActionInterpreter Class
Microsoft.VisualStudio.TestTools.UITest.CodeGeneration Namespace
Return to top