Udostępnij za pośrednictwem


ParserErrorCollection.Remove(ParserError) Metoda

Definicja

Usuwa określony ParserError obiekt z kolekcji.

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)

Parametry

value
ParserError

Element ParserError do usunięcia z kolekcji.

Przykłady

W poniższym przykładzie kodu pokazano, jak usunąć element ParserError z określonego indeksu ParserErrorCollection w obiekcie.

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

Uwagi

Remove Użyj metody , aby usunąć ParserError obiekt z kolekcji, gdy masz odwołanie do ParserErrorobiektu .

Dotyczy