ClassWaitResult
Class
Represents a wait result.
Definition
Namespace:ArtOfTest.Common
Assembly:ArtOfTest.WebAii.dll
Syntax:
cs-api-definition
public class WaitResult
Inheritance: objectWaitResult
Constructors
WaitResult()
Empty constructor needed for serialization.
Declaration
cs-api-definition
public WaitResult()
WaitResult(WaitResultType, string)
Create a new WaitConditionResult object.
Declaration
cs-api-definition
public WaitResult(WaitResultType resultType, string error)
Parameters
resultType
The result type.
error
The error if any.
Properties
Error
Gets the error if the ResultType = ErrorAbort
ResultType
Gets the result type of this wait condition.
Declaration
cs-api-definition
public WaitResultType ResultType { get; }
Property Value
Methods
ThrowExceptionIfInError()
Throw an exception if the
Declaration
cs-api-definition
public void ThrowExceptionIfInError()
ToString()
Creates a string that describes this object.
Declaration
cs-api-definition
public override string ToString()
Returns
The string describing this object.
Overrides