ParserErrorCollection.IndexOf(ParserError) Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Získá index zadaného ParserError objektu v kolekci.
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
Parametry
- value
- ParserError
Vyhledá ParserError se v kolekci.
Návraty
Index ParserError objektů v kolekci založený na nule; jinak 1, pokud ParserError není v kolekci.
Příklady
Následující příklad kódu ukazuje, jak najít index ParserError objektu v zadaném indexu v kolekci ParserErrorCollection .
// 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
Poznámky
Použijte metodu IndexOf k určení indexu ParserError objektu v kolekci. To je užitečné k určení indexu každého ParserError , když iterujete kolekci pomocí IEnumerator objektu vráceného metodou GetEnumerator .