This documentation is archived and is not being maintained.

ParserErrorCollection::Contains Method

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.

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Show: