SqlBatch.ExecuteReaderAsync(CancellationToken) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Une version asynchrone de ExecuteReader() , qui envoie le Commands à et Connection génère un SqlDataReader. Les exceptions seront signalées via l’objet Task retourné.
public System.Threading.Tasks.Task<Microsoft.Data.SqlClient.SqlDataReader> ExecuteReaderAsync (System.Threading.CancellationToken cancellationToken = default);
override this.ExecuteReaderAsync : System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Data.SqlClient.SqlDataReader>
Public Function ExecuteReaderAsync (Optional cancellationToken As CancellationToken = Nothing) As Task(Of SqlDataReader)
Paramètres
- cancellationToken
- CancellationToken
Jeton pour annuler l’opération asynchrone.
Retours
Tâche représentant l’opération asynchrone.
Exceptions
Une erreur s’est produite lors de l’exécution du lot.
La valeur CommandBehavior n’est pas valide.
Le jeton d’annulation a été annulé. Cette exception est stockée dans la tâche retournée.