次の方法で共有


SyndicationNode コンストラクター

定義

オーバーロード

SyndicationNode()

新しい SyndicationNode オブジェクトを 作成します。

SyndicationNode(String, String, String)

NodeName、NodeNamespaceNodeValue プロパティの値を指定して、新しい SyndicationNode オブジェクトを作成します。

SyndicationNode()

新しい SyndicationNode オブジェクトを 作成します。

public:
 SyndicationNode();
 SyndicationNode();
public SyndicationNode();
function SyndicationNode()
Public Sub New ()

適用対象

SyndicationNode(String, String, String)

NodeName、NodeNamespaceNodeValue プロパティの値を指定して、新しい SyndicationNode オブジェクトを作成します。

public:
 SyndicationNode(Platform::String ^ nodeName, Platform::String ^ nodeNamespace, Platform::String ^ nodeValue);
 SyndicationNode(winrt::hstring const& nodeName, winrt::hstring const& nodeNamespace, winrt::hstring const& nodeValue);
public SyndicationNode(string nodeName, string nodeNamespace, string nodeValue);
function SyndicationNode(nodeName, nodeNamespace, nodeValue)
Public Sub New (nodeName As String, nodeNamespace As String, nodeValue As String)

パラメーター

nodeName
String

Platform::String

winrt::hstring

要素のローカル名。 XML 1.0 に従って有効である必要があります。

nodeNamespace
String

Platform::String

winrt::hstring

要素の名前空間。

nodeValue
String

Platform::String

winrt::hstring

要素のテキスト コンテンツ。 要素に子要素のみが含まれている場合、このパラメーターは NULL です。

適用対象