DataConnector | ComponentOne
C1.AdoNet.Magento Assembly / C1.AdoNet.Magento Namespace / C1MagentoCommand Class / ExecuteScalarAsync Method / ExecuteScalarAsync(CancellationToken) Method
The cancellation token to abort the query execution at any moment.

In This Topic
    ExecuteScalarAsync(CancellationToken) Method
    In This Topic
    An asynchronous version of method ExecuteScalar that executes the query and returns the first column of the first row in the result set returned by the query. All other columns and rows are ignored.
    Syntax
    'Declaration
     
    Public Overloads Function ExecuteScalarAsync( _
       ByVal cancellationToken As CancellationToken _
    ) As Task(Of Object)
    public Task<object> ExecuteScalarAsync( 
       CancellationToken cancellationToken
    )

    Parameters

    cancellationToken
    The cancellation token to abort the query execution at any moment.

    Return Value

    The scalar result.
    See Also