ParserErrorCollection.IndexOf(ParserError) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取集合中指定 ParserError 对象的索引。
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
参数
- value
- ParserError
要在集合中查找的 ParserError。
返回
ParserError 对象在集合中索引(索引从零开始的);否则,如果 ParserError 不在集合中,则为 1。
示例
下面的代码示例演示如何在集合中的ParserErrorCollection指定索引处查找对象的索引ParserError。
// 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
注解
使用该方法 IndexOf 确定集合中对象的索引 ParserError 。 这可用于使用IEnumerator方法返回GetEnumerator的对象循环访问集合时确定每个ParserError对象的索引。