Class
FindError

Class represents a Find error information. This class encapsulates all the information regarding a Find object call that caused one of the Find methods to return null or an empty list.

Definition

Namespace:ArtOfTest.WebAii.Exceptions.ErrorData

Assembly:ArtOfTest.WebAii.dll

Syntax:

cs-api-definition
public class FindError

Inheritance: objectFindError

Properties

ExpressionUsed

Gets the FindExpression used for the search

Declaration

cs-api-definition
public IFindExpression ExpressionUsed { get; }

Property Value

IFindExpression

IsChained

Gets whether this is a chained parameter error or not.

Declaration

cs-api-definition
public bool IsChained { get; }

Property Value

bool

ParameterUsed

Gets the FindParam used for the search. If IsChained != null, then this will return null.

Declaration

cs-api-definition
public FindParam ParameterUsed { get; }

Property Value

FindParam

Reference

Gets the reference element used for the search.

Declaration

cs-api-definition
public Element Reference { get; }

Property Value

Element

SearchLog

Gets the search log returned by the identification routines.

Declaration

cs-api-definition
public string SearchLog { get; }

Property Value

string

Methods

ToString()

String representation of a FindError object

Declaration

cs-api-definition
public override string ToString()

Returns

string

The string representation.

Overrides object.ToString()