XmlElement(String, String, String, XmlDocument) コンストラクター

定義

XmlElement クラスの新しいインスタンスを初期化します。

protected public:
 XmlElement(System::String ^ prefix, System::String ^ localName, System::String ^ namespaceURI, System::Xml::XmlDocument ^ doc);
protected internal XmlElement (string prefix, string localName, string namespaceURI, System.Xml.XmlDocument doc);
protected internal XmlElement (string prefix, string localName, string? namespaceURI, System.Xml.XmlDocument doc);
new System.Xml.XmlElement : string * string * string * System.Xml.XmlDocument -> System.Xml.XmlElement
Protected Friend Sub New (prefix As String, localName As String, namespaceURI As String, doc As XmlDocument)

パラメーター

prefix
String

名前空間プリフィックス。Prefix プロパティのトピックを参照してください。

localName
String

ローカル名。LocalName プロパティのトピックを参照してください。

namespaceURI
String

名前空間 URI。NamespaceURI プロパティのトピックを参照してください。

doc
XmlDocument

親 XML ドキュメント。

注釈

直接インスタンス化 XmlElement しないでください。代わりに、次のような CreateElementメソッドを使用します。

適用対象