Partager via


SqlBatchCommandCollection.Remove Méthode

Définition

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

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>.

S’applique à