SyndicationAttribute Constructors

Definition

Overloads

SyndicationAttribute()

Creates a new SyndicationAttribute object.

SyndicationAttribute(String, String, String)

Creates a new SyndicationAttribute object with the specified Name, Namespace, and Value property values.

SyndicationAttribute()

Creates a new SyndicationAttribute object.

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

Applies to

SyndicationAttribute(String, String, String)

Creates a new SyndicationAttribute object with the specified Name, Namespace, and Value property values.

public:
 SyndicationAttribute(Platform::String ^ attributeName, Platform::String ^ attributeNamespace, Platform::String ^ attributeValue);
 SyndicationAttribute(winrt::hstring const& attributeName, winrt::hstring const& attributeNamespace, winrt::hstring const& attributeValue);
public SyndicationAttribute(string attributeName, string attributeNamespace, string attributeValue);
function SyndicationAttribute(attributeName, attributeNamespace, attributeValue)
Public Sub New (attributeName As String, attributeNamespace As String, attributeValue As String)

Parameters

attributeName
String

Platform::String

winrt::hstring

The name of the attribute.

attributeNamespace
String

Platform::String

winrt::hstring

The namespace of the attribute.

attributeValue
String

Platform::String

winrt::hstring

The value of the attribute.

Applies to