次の方法で共有


XmlDocument.CreateAttribute メソッド (String)

指定した Name を使用して XmlAttribute を作成します。

Overloads Public Function CreateAttribute( _
   ByVal name As String _) As XmlAttribute
[C#]
public XmlAttribute CreateAttribute(stringname);
[C++]
public: XmlAttribute* CreateAttribute(String* name);
[JScript]
public function CreateAttribute(
   name : String) : XmlAttribute;

パラメータ

  • name
    属性の限定名。名前にコロンが含まれている場合は、名前のうち最初のコロンの前にある部分が Prefix プロパティに反映され、最初のコロンの後ろの部分が LocalName プロパティに反映されます。プリフィックスが xmlns などの認識された組み込みプリフィックスでない限り、 NamespaceURI は空のままです。この場合、 NamespaceURI の値は http://www.w3.org/2000/xmlns/ です。

戻り値

新しい XmlAttribute

解説

SetAttributeNode メソッドを使用して、 XmlAttributeXmlElement に追加できます。

使用例

[Visual Basic, C#, C++] 属性を作成し、XML ドキュメントに追加する例を次に示します。

 
Imports System
Imports System.IO
Imports System.Xml

Public Class Sample
    Public Shared Sub Main()
        Dim doc As New XmlDocument()
        doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>"  & _
                    "<title>Pride And Prejudice</title>"  & _
                    "</book>")
        
        'Create an attribute.
        Dim attr As XmlAttribute = doc.CreateAttribute("publisher")
        attr.Value = "WorldWide Publishing"
        
        'Add the new node to the document. 
        doc.DocumentElement.SetAttributeNode(attr)
        
        Console.WriteLine("Display the modified XML...")
        doc.Save(Console.Out)
    End Sub 'Main
End Class 'Sample

[C#] 
using System;
using System.IO;
using System.Xml;

public class Sample
{
  public static void Main()
  {
    XmlDocument doc = new XmlDocument();
    doc.LoadXml("<book genre='novel' ISBN='1-861001-57-5'>" +
                "<title>Pride And Prejudice</title>" +
                "</book>");

    //Create an attribute.
    XmlAttribute attr = doc.CreateAttribute("publisher");
    attr.Value = "WorldWide Publishing";
          
    //Add the new node to the document. 
    doc.DocumentElement.SetAttributeNode(attr);
        
    Console.WriteLine("Display the modified XML...");        
    doc.Save(Console.Out);
  }
}

[C++] 
#using <mscorlib.dll>
#using <System.Xml.dll>
using namespace System;
using namespace System::IO;
using namespace System::Xml;

int main()
{
    XmlDocument* doc = new XmlDocument();
    doc->LoadXml(S"<book genre='novel' ISBN='1-861001-57-5'><title>Pride And Prejudice</title></book>");

    //Create an attribute.
    XmlAttribute* attr = doc->CreateAttribute(S"publisher");
    attr->Value = S"WorldWide Publishing";
          
    //Add the new node to the document. 
    doc->DocumentElement->SetAttributeNode(attr);
        
    Console::WriteLine(S"Display the modified XML...");        
    doc->Save(Console::Out);
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

参照

XmlDocument クラス | XmlDocument メンバ | System.Xml 名前空間 | XmlDocument.CreateAttribute オーバーロードの一覧