ParserErrorCollection.IndexOf(ParserError) Method

Definition

Gets the index of the specified ParserError object in the collection.

public int IndexOf (System.Web.ParserError value);

Parameters

value
ParserError

The ParserError to locate in the collection.

Returns

The zero-based index of the ParserError objects within the collection; otherwise, 1 if the ParserError is not in the collection.

Examples

The following code example demonstrates how to locate the index of a ParserError object at the specified index in a ParserErrorCollection collection.

// Test for the presence of a ParserError in the 
// collection, and retrieve its index if it is found.
ParserError testError = new ParserError("Error", "Path", 1);
int itemIndex = -1;
if (collection.Contains(testError))
  itemIndex = collection.IndexOf(testError);

Remarks

Use the IndexOf method to determine the index of a ParserError object within the collection. This is useful to determine the index of each ParserError when you iterate through the collection by using the IEnumerator object returned by the GetEnumerator method.

Applies to

Product Versions
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1