XPathNodeIterator.Current プロパティ

定義

派生クラスでオーバーライドされると、現在のコンテキスト ノードに位置する、この XPathNodeIteratorXPathNavigator オブジェクトを取得します。

public:
 abstract property System::Xml::XPath::XPathNavigator ^ Current { System::Xml::XPath::XPathNavigator ^ get(); };
public abstract System.Xml.XPath.XPathNavigator? Current { get; }
public abstract System.Xml.XPath.XPathNavigator Current { get; }
member this.Current : System.Xml.XPath.XPathNavigator
Public MustOverride ReadOnly Property Current As XPathNavigator

プロパティ値

XPathNavigator

ノード セットの選択元となるコンテキスト ノードに位置する XPathNavigator オブジェクト。 MoveNext() メソッドを呼び出して、選択したセットの最初のノードに XPathNodeIterator を移動する必要があります。

次の例では、オブジェクトのプロパティXPathNodeIteratorCloneクラスのメソッドをCurrent使用して、ハーマンメルビルによって作成されたすべての書籍タイトルをXPathNavigator取得します。

XPathDocument^ document = gcnew XPathDocument("books.xml");
XPathNavigator^ navigator = document->CreateNavigator();

// Select all books authored by Melville.
XPathNodeIterator^ nodes = navigator->Select("descendant::book[author/last-name='Melville']");

while (nodes->MoveNext())
{
    // Clone the navigator returned by the Current property. 
    // Use the cloned navigator to get the title element.
    XPathNavigator^ clone = nodes->Current->Clone();
    clone->MoveToFirstChild();
    Console::WriteLine("Book title: {0}", clone->Value);
}
XPathDocument document = new XPathDocument("books.xml");
XPathNavigator navigator = document.CreateNavigator();

// Select all books authored by Melville.
XPathNodeIterator nodes = navigator.Select("descendant::book[author/last-name='Melville']");

while (nodes.MoveNext())
{
    // Clone the navigator returned by the Current property.
    // Use the cloned navigator to get the title element.
    XPathNavigator clone = nodes.Current.Clone();
    clone.MoveToFirstChild();
    Console.WriteLine("Book title: {0}", clone.Value);
}
Dim document As XPathDocument = New XPathDocument("books.xml")
Dim navigator As XPathNavigator = document.CreateNavigator()

' Select all books authored by Melville.
Dim nodes As XPathNodeIterator = navigator.Select("descendant::book[author/last-name='Melville']")

While nodes.MoveNext()
    ' Clone the navigator returned by the Current property. 
    ' Use the cloned navigator to get the title element.
    Dim clone As XPathNavigator = nodes.Current.Clone()
    clone.MoveToFirstChild()
    Console.WriteLine("Book title: {0}", clone.Value)
End While

この例は、contosoBooks.xml ファイルを入力として使用します。

<?xml version="1.0" encoding="utf-8" ?>  
<bookstore xmlns="http://www.contoso.com/books">  
    <book genre="autobiography" publicationdate="1981-03-22" ISBN="1-861003-11-0">  
        <title>The Autobiography of Benjamin Franklin</title>  
        <author>  
            <first-name>Benjamin</first-name>  
            <last-name>Franklin</last-name>  
        </author>  
        <price>8.99</price>  
    </book>  
    <book genre="novel" publicationdate="1967-11-17" ISBN="0-201-63361-2">  
        <title>The Confidence Man</title>  
        <author>  
            <first-name>Herman</first-name>  
            <last-name>Melville</last-name>  
        </author>  
        <price>11.99</price>  
    </book>  
    <book genre="philosophy" publicationdate="1991-02-15" ISBN="1-861001-57-6">  
        <title>The Gorgias</title>  
        <author>  
            <name>Plato</name>  
        </author>  
        <price>9.99</price>  
    </book>  
</bookstore>  

注釈

返された XPathNavigator オブジェクトのプロパティを使用して、現在のノードの情報を取得できます。 ただし、返される XPathNavigator オブジェクトは変更しないでください。 返された XPathNavigator オブジェクトを、選択したノード セットから移動することはできません。

または、クラスのメソッドをXPathNavigator使用してオブジェクトをCloneXPathNavigator複製することもできます。 複製された XPathNavigator オブジェクトは、選択したノード セットから移動できます。 オブジェクトを複製するこの方法は XPathNavigator 、XPath クエリのパフォーマンスに影響する可能性があります。

メソッドでSelectChildrenノードがSelectAncestorsSelectDescendants選択されない場合、プロパティがCurrentコンテキスト ノードを指していない可能性があります。

ノードが選択されているかどうかをテストするには、次の Count 例に示すようにプロパティを使用します。

適用対象

こちらもご覧ください