Click or drag to resize
ConnectionHelperExecuteScalarAsync Method (String, CancellationToken, QueryDataParameters, QueryMacros)

Executes the query asynchronously and returns the first column of the first row in the result set returned by the query. Additional columns or rows are ignored.

The cancellation token can be used to request that the operation be abandoned before the command timeout elapses. Exceptions will be reported via the returned Task object.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 12.0.0
Syntax
C#
public static Task<Object> ExecuteScalarAsync(
	string queryName,
	CancellationToken cancellationToken,
	QueryDataParameters parameters = null,
	QueryMacros macros = null
)

Parameters

queryName
Type: SystemString
Name of the query in format application.class.queryname
cancellationToken
Type: System.ThreadingCancellationToken
The cancellation instruction.
parameters (Optional)
Type: CMS.DataEngineQueryDataParameters
Query parameters.
macros (Optional)
Type: CMS.DataEngineQueryMacros
Query expressions.

Return Value

Type: TaskObject
A task representing the asynchronous operation.
See Also