'Declaration Public Overloads Overrides NotOverridable Function ReadAsync( _ ByVal cancellationToken As CancellationToken _ ) As Task(Of Boolean)
'Usage Dim instance As TdDataReader Dim cancellationToken As CancellationToken Dim value As Task(Of Boolean) value = instance.ReadAsync(cancellationToken)
public override Task<bool> ReadAsync( CancellationToken cancellationToken )
public: Task<bool>^ ReadAsync( CancellationToken cancellationToken ) override
Parameters
- cancellationToken
- A Threading.CancellationToken used to indicate that the asynchronous operation should be canceled.
Return Value
true
if the reader is advanced to the next record, or false
if the end of the result set is reached.