DbCommandDispatcher.Reader(DbCommand, DbCommandInterceptionContext) 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.
Envoie ReaderExecuting(DbCommand, DbCommandInterceptionContext<DbDataReader>) et ReaderExecuted(DbCommand, DbCommandInterceptionContext<DbDataReader>) à n’importe quel IDbCommandInterceptor inscrit sur DbInterception avant/après avoir effectué un appel à ExecuteReader(CommandBehavior).
public virtual System.Data.Common.DbDataReader Reader (System.Data.Common.DbCommand command, System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext interceptionContext);
abstract member Reader : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext -> System.Data.Common.DbDataReader
override this.Reader : System.Data.Common.DbCommand * System.Data.Entity.Infrastructure.Interception.DbCommandInterceptionContext -> System.Data.Common.DbDataReader
Public Overridable Function Reader (command As DbCommand, interceptionContext As DbCommandInterceptionContext) As DbDataReader
Paramètres
- command
- DbCommand
Commande sur laquelle l’opération sera exécutée.
- interceptionContext
- DbCommandInterceptionContext
Informations facultatives sur le contexte de l’appel effectué.
Retours
Résultat de l’opération, qui a peut-être été modifié par des intercepteurs.
Remarques
Notez que le résultat de l’exécution de la commande est retourné par cette méthode. Le résultat n’est pas disponible dans le contexte d’interception transmis à cette méthode, car le contexte d’interception est cloné avant d’être transmis aux intercepteurs.