IHostManagementGetDataValueAsync Method

Get the value of a field of the requested table or tables asynchronously.

Definition

Namespace: Aliquo.Windows
Assembly: Aliquo.Windows (in Aliquo.Windows.dll) Version: 5.0.9179.22654
C#
Task<Object> GetDataValueAsync(
	string table,
	string field,
	string condition,
	string order = null,
	bool useSettings = false,
	List<string> excludeUserConditions = null
)

Parameters

table  String
Table or tables on which the query is performed.
field  String
Field to return the value.
condition  String
Query data selection criteria.
order  String  (Optional)
Fields and query ordering expression.
useSettings  Boolean  (Optional)
Indicates whether the table settings are used (links, conditions per user, ...).
excludeUserConditions  ListString  (Optional)
List of table aliases to exclude from per-user conditions.

Return Value

TaskObject
Object with the value of the indicated field.

See Also