ParserErrorCollection::Contains Method (ParserError^)

 

Determines whether the ParserError object is located in the collection.

Namespace:   System.Web
Assembly:  System.Web (in System.Web.dll)

public:
bool Contains(
	ParserError^ value
)

Parameters

value
Type: System.Web::ParserError^

The ParserError to locate in the collection.

Return Value

Type: System::Boolean

true if the ParserError is in the collection; otherwise, false.

You cannot add the same ParserError object to the collection more than once. However, attempting to add a ParserError object more than once will not throw an exception. Instead, the addition will fail. In this case, the Add method will return a value of –1. However, the AddRange and Insert methods do not have return values. When adding ParserError objects by using one of these methods, use the Contains method to determine whether a particular ParserError object is already in the collection.

The following code example demonstrates how to search for an instance of a specified ParserError object in a ParserErrorCollection object.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 2.0
Return to top
Show: