ParserErrorCollection.Remove(ParserError) Метод

Определение

Удаляет указанный объект ParserError из коллекции.

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)

Параметры

value
ParserError

Объект ParserError, который требуется удалить из коллекции.

Примеры

В следующем примере кода показано, как удалить ParserError из указанного индекса в объекте ParserErrorCollection .

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

Комментарии

Remove Используйте метод, чтобы удалить ParserError объект из коллекции, если у вас есть ссылка на ParserError.

Применяется к