ParserErrorCollection::IndexOf Method (ParserError^)
.NET Framework (current version)
Gets the index of the specified ParserError object in the collection.
Assembly: System.Web (in System.Web.dll)
Parameters
- value
-
Type:
System.Web::ParserError^
The ParserError to locate in the collection.
Return Value
Type: System::Int32The zero-based index of the ParserError objects within the collection; otherwise, 1 if the ParserError is not in the collection.
Use the IndexOf method to determine the index of a ParserError object within the collection. This is useful to determine the index of each ParserErrorwhen you iterate through the collection by using the IEnumerator object returned by the GetEnumerator method.
The following code example demonstrates how to locate the index of a ParserError object at the specified index in a ParserErrorCollection collection.
.NET Framework
Available since 2.0
Available since 2.0
Show: