Class LocatorResult
Result of a locator resolution operation.
public class LocatorResult
- Inheritance
-
LocatorResult
- Inherited Members
- Extension Methods
Constructors
LocatorResult()
Constructor.
public LocatorResult()
Properties
Count
Gets the result count.
public int Count { get; }
Property Value
HasError
Gets true when the result is an error.
public bool HasError { get; }
Property Value
HasMultipleResults
Gets true when the result has multiple rows.
public bool HasMultipleResults { get; }
Property Value
HasSingleResult
Gets true when the result has a single row.
public bool HasSingleResult { get; }
Property Value
HasTooManyResults
Gets true when the result is too broad.
public bool HasTooManyResults { get; }
Property Value
ListKind
Gets the kind of result list returned by the operation.
public LocatorResultListKind ListKind { get; }
Property Value
Message
Gets or sets a message related to the result.
public string Message { get; set; }
Property Value
ObjectList
Gets or sets the object result list.
public IList ObjectList { get; set; }
Property Value
Status
Gets or sets the result status.
public LocatorResultStatus Status { get; set; }
Property Value
Table
Gets or sets the result table.
public MemTable Table { get; set; }
Property Value
View
Gets the result table view.
public DataView View { get; }