XPathNavigator.MoveToId 方法

当在派生类中重写时,移动到具有 ID 类型的属性并且属性值与指定的 String 匹配的节点。

**命名空间:**System.Xml.XPath
**程序集:**System.Xml(在 system.xml.dll 中)

语法

声明
Public MustOverride Function MoveToId ( _
    id As String _
) As Boolean
用法
Dim instance As XPathNavigator
Dim id As String
Dim returnValue As Boolean

returnValue = instance.MoveToId(id)
public abstract bool MoveToId (
    string id
)
public:
virtual bool MoveToId (
    String^ id
) abstract
public abstract boolean MoveToId (
    String id
)
public abstract function MoveToId (
    id : String
) : boolean

参数

  • id
    一个 String,表示要移动到的节点的 ID 值。

返回值

如果 XPathNavigator 成功移动,则为 true;否则为 false。如果为 false,则导航器的位置未更改。

备注

如果源文档使用 DTD 显式声明了类型 ID 的属性,则此方法可以根据唯一 ID 识别节点。

例如,假定下面的 XML 数据(<data><x a="a1"/></data>)是使用 DTD(包含 <!ATTLIST x a ID #REQUIRED>)加载的。

如果 XPathNavigator 定位在 XML 数据中的某处,则调用 MoveToId("a1") 会将 XPathNavigator 定位在元素节点 x 上。

平台

Windows 98、Windows 2000 SP4、Windows Millennium Edition、Windows Server 2003、Windows XP Media Center Edition、Windows XP Professional x64 Edition、Windows XP SP2、Windows XP Starter Edition

.NET Framework 并不是对每个平台的所有版本都提供支持。有关受支持版本的列表,请参见系统要求

版本信息

.NET Framework

受以下版本支持:2.0、1.1、1.0

请参见

参考

XPathNavigator 类
XPathNavigator 成员
System.Xml.XPath 命名空间