DataConnector | ComponentOne
C1.AdoNet.Kintone Assembly / C1.DataConnector.AdoNet Namespace / C1CommandBase 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 allows the execution of a query that returns a 1x1 result table.
    Syntax
    'Declaration
     
    Public Overloads Overrides Function ExecuteScalarAsync( _
       ByVal cancellationToken As CancellationToken _
    ) As Task(Of Object)
    public override 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