XPathNavigator.InsertElementBefore メソッドとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > XPathNavigator.InsertElementBefore メソッドの意味・解説 

XPathNavigator.InsertElementBefore メソッド

メモ : このメソッドは、.NET Framework version 2.0新しく追加されたものです。

指定された値と共に指定した名前空間プレフィックスローカル名、および名前空間 URI使用して現在のノード前に新し兄弟要素作成します

名前空間: System.Xml.XPath
アセンブリ: System.Xml (system.xml.dll 内)
構文構文

Public Overridable Sub InsertElementBefore
 ( _
    prefix As String, _
    localName As String, _
    namespaceURI As String, _
    value As String _
)
Dim instance As XPathNavigator
Dim prefix As String
Dim localName As String
Dim namespaceURI As String
Dim value As String

instance.InsertElementBefore(prefix, localName, namespaceURI, value)
public virtual void InsertElementBefore (
    string prefix,
    string localName,
    string namespaceURI,
    string value
)
public:
virtual void InsertElementBefore (
    String^ prefix, 
    String^ localName, 
    String^ namespaceURI, 
    String^ value
)
public void InsertElementBefore (
    String prefix, 
    String localName, 
    String namespaceURI, 
    String value
)
public function InsertElementBefore (
    prefix : String, 
    localName : String, 
    namespaceURI : String, 
    value : String
)

パラメータ

prefix

新し子要素名前空間プレフィックス (存在する場合)。

localName

新し子要素ローカル名 (存在する場合)。

namespaceURI

新し子要素名前空間 URI (存在する場合)。Emptynull 参照 (Visual Basic では Nothing) は等価です。

value

新し子要素の値。Empty または null 参照 (Visual Basic では Nothing) を渡すと、空の要素作成されます。

例外例外
例外種類条件

InvalidOperationException

XPathNavigator の該当位置では、新し兄弟ノード現在のノード前に挿入することはできません。

NotSupportedException

XPathNavigator編集サポートしていません。

解説解説

名前空間プレフィックス値と URI 値は、LookupPrefix メソッドまたは LookupNamespace メソッド使用して取得できます。たとえば、構文 navigator.InsertElementBefore(navigator.Prefix, "pages", LookupNamespaceURI(navigator.Prefix), String.Empty)スコープ内の名前空間 xmlns:bk="http://www.contoso.com/books"使用して兄弟要素挿入すると、新し<bk:pages/> 兄弟要素作成されます。

InsertElementBefore メソッド使用するときに考慮する必要がある重要な注意事項次に示します

使用例使用例

contosoBooks.xml ファイル内にある最初book 要素price 子要素前に新しpages 要素挿入する例を次に示します

Dim document As XmlDocument = New
 XmlDocument()
document.Load("contosoBooks.xml")
Dim navigator As XPathNavigator = document.CreateNavigator()

navigator.MoveToChild("bookstore", "http://www.contoso.com/books")
navigator.MoveToChild("book", "http://www.contoso.com/books")
navigator.MoveToChild("price", "http://www.contoso.com/books")

navigator.InsertElementBefore(navigator.Prefix, "pages",
 navigator.LookupNamespace(navigator.Prefix), "100")

navigator.MoveToParent()
Console.WriteLine(navigator.OuterXml)
XmlDocument document = new XmlDocument();
document.Load("contosoBooks.xml");
XPathNavigator navigator = document.CreateNavigator();

navigator.MoveToChild("bookstore", "http://www.contoso.com/books");
navigator.MoveToChild("book", "http://www.contoso.com/books");
navigator.MoveToChild("price", "http://www.contoso.com/books");

navigator.InsertElementBefore(navigator.Prefix, "pages", navigator.LookupNamespace(navigator.Prefix),
 "100");

navigator.MoveToParent();
Console.WriteLine(navigator.OuterXml);

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

<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 メンバ
System.Xml.XPath 名前空間


このページでは「.NET Framework クラス ライブラリ リファレンス」からXPathNavigator.InsertElementBefore メソッドを検索した結果を表示しています。
Weblioに収録されているすべての辞書からXPathNavigator.InsertElementBefore メソッドを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からXPathNavigator.InsertElementBefore メソッド を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

XPathNavigator.InsertElementBefore メソッドのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



XPathNavigator.InsertElementBefore メソッドのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS