SqlBatchCommandCollection.Remove 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.
Surcharges
Remove(SqlBatchCommand) |
Supprime la première occurrence d’un objet spécifique SqlBatchCommand de la collection. |
Remove(DbBatchCommand) |
Supprime l'objet SqlBatchCommand spécifié de la collection. |
Remove(SqlBatchCommand)
Supprime la première occurrence d’un objet spécifique SqlBatchCommand de la collection.
public:
virtual bool Remove(Microsoft::Data::SqlClient::SqlBatchCommand ^ item);
public bool Remove (Microsoft.Data.SqlClient.SqlBatchCommand item);
override this.Remove : Microsoft.Data.SqlClient.SqlBatchCommand -> bool
Public Function Remove (item As SqlBatchCommand) As Boolean
Paramètres
- item
- SqlBatchCommand
Retours
Retourne true
si un élément a été supprimé avec succès. Retourne false si un élément n’a pas pu être supprimé ou si aucun élément n’a été trouvé.
Implémente
S’applique à
Remove(DbBatchCommand)
Supprime l'objet SqlBatchCommand spécifié de la collection.
public:
override bool Remove(System::Data::Common::DbBatchCommand ^ item);
public override bool Remove (System.Data.Common.DbBatchCommand item);
override this.Remove : System.Data.Common.DbBatchCommand -> bool
Public Overrides Function Remove (item As DbBatchCommand) As Boolean
Paramètres
- item
- DbBatchCommand
Objet à supprimer de ICollection<T>.
Retours
true
si item
a été correctement supprimé ; sinon, false
. Cette méthode retourne également false
si item
est introuvable dans ICollection<T>.