ParserErrorCollection.Remove(ParserError) 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.
Supprime l'objet ParserError spécifié de la collection.
public:
void Remove(System::Web::ParserError ^ value);
public void Remove (System.Web.ParserError value);
member this.Remove : System.Web.ParserError -> unit
Public Sub Remove (value As ParserError)
Paramètres
- value
- ParserError
ParserError à supprimer de la collection.
Exemples
L’exemple de code suivant montre comment supprimer un ParserError de l’index spécifié dans un ParserErrorCollection objet.
// Insert a ParserError at index 0 of the collection.
ParserError error = new ParserError("Error", "Path", 1);
collection.Insert(0, error);
// Remove the specified ParserError from the collection.
collection.Remove(error);
' Insert a ParserError at index 0 of the collection.
Dim [error] As New ParserError("Error", "Path", 1)
collection.Insert(0, [error])
' Remove the specified ParserError from the collection.
collection.Remove([error])
Remarques
Utilisez la Remove méthode pour supprimer un ParserError objet de la collection lorsque vous avez une référence au ParserError.