Aracılığıyla paylaş


ParserErrorCollection.Remove(ParserError) Yöntem

Tanım

Belirtilen ParserError nesneyi koleksiyondan kaldırır.

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)

Parametreler

value
ParserError

ParserError koleksiyondan kaldırılacak.

Örnekler

Aşağıdaki kod örneği, bir ParserError nesnesinin belirtilen dizinden ParserErrorCollection nasıl kaldırılacağını gösterir.

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

Açıklamalar

Remove öğesine bir başvurunuz olduğunda bir nesneyi koleksiyondan kaldırmak ParserError için ParserErroryöntemini kullanın.

Şunlara uygulanır