ParserErrorCollection.IndexOf(ParserError) Method

Definition

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

public:
 int IndexOf(System::Web::ParserError ^ value);
public int IndexOf (System.Web.ParserError value);
member this.IndexOf : System.Web.ParserError -> int
Public Function IndexOf (value As ParserError) As Integer

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);
' Test for the presence of a ParserError in the 
' collection, and retrieve its index if it is found.
Dim testError As New ParserError("Error", "Path", 1)
Dim itemIndex As Integer = -1
If collection.Contains(testError) Then
  itemIndex = collection.IndexOf(testError)
End If

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