SyndicationCategory Constructors

Definition

Overloads

SyndicationCategory()

Creates a SyndicationCategory object.

SyndicationCategory(String)

Creates a SyndicationCategory object with the specified term property.

SyndicationCategory(String, String, String)

Creates SyndicationCategory object with the specified property values.

SyndicationCategory()

Creates a SyndicationCategory object.

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

Applies to

SyndicationCategory(String)

Creates a SyndicationCategory object with the specified term property.

public:
 SyndicationCategory(Platform::String ^ term);
 SyndicationCategory(winrt::hstring const& term);
public SyndicationCategory(string term);
function SyndicationCategory(term)
Public Sub New (term As String)

Parameters

term
String

Platform::String

winrt::hstring

A string that identifies the category. This parameter represents the required term attribute on atom:category or the text content of the category element in RSS 2.0.

See also

Applies to

SyndicationCategory(String, String, String)

Creates SyndicationCategory object with the specified property values.

public:
 SyndicationCategory(Platform::String ^ term, Platform::String ^ scheme, Platform::String ^ label);
 SyndicationCategory(winrt::hstring const& term, winrt::hstring const& scheme, winrt::hstring const& label);
public SyndicationCategory(string term, string scheme, string label);
function SyndicationCategory(term, scheme, label)
Public Sub New (term As String, scheme As String, label As String)

Parameters

term
String

Platform::String

winrt::hstring

A string that identifies the category.

scheme
String

Platform::String

winrt::hstring

The scheme of the category.

label
String

Platform::String

winrt::hstring

A label for display in end-user applications.

See also

Applies to