SyndicationNode Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
SyndicationNode() |
Creates a new SyndicationNode object. |
SyndicationNode(String, String, String) |
Creates a new SyndicationNode object with the specified NodeName, NodeNamespace, and NodeValue property values. |
SyndicationNode()
Creates a new SyndicationNode object.
public:
SyndicationNode();
SyndicationNode();
public SyndicationNode();
function SyndicationNode()
Public Sub New ()
Applies to
SyndicationNode(String, String, String)
Creates a new SyndicationNode object with the specified NodeName, NodeNamespace, and NodeValue property values.
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)
Parameters
- nodeName
-
String
Platform::String
winrt::hstring
The local name of the element. It must be valid according to XML 1.0.
- nodeNamespace
-
String
Platform::String
winrt::hstring
The namespace of the element.
- nodeValue
-
String
Platform::String
winrt::hstring
The text content of the element. If the element contains only child elements, this parameter is NULL.