Compartilhar via


ParserErrorCollection.Remove(ParserError) Método

Definição

Remove o objeto ParserError especificado da coleção.

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)

Parâmetros

value
ParserError

O ParserError a ser removido da coleção.

Exemplos

O exemplo de código a seguir demonstra como remover um ParserError do índice especificado em um ParserErrorCollection objeto .

// 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])

Comentários

Use o Remove método para remover um ParserError objeto da coleção quando você tiver uma referência ao ParserError.

Aplica-se a