Compartir a través de


SyndicationCategory Constructores

Definición

Sobrecargas

SyndicationCategory()

Crea un objeto SyndicationCategory .

SyndicationCategory(String)

Crea un objeto SyndicationCategory con la propiedad de término especificada.

SyndicationCategory(String, String, String)

Crea un objeto SyndicationCategory con los valores de propiedad especificados.

SyndicationCategory()

Crea un objeto SyndicationCategory .

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

Se aplica a

SyndicationCategory(String)

Crea un objeto SyndicationCategory con la propiedad de término especificada.

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

Parámetros

term
String

Platform::String

winrt::hstring

Cadena que identifica la categoría. Este parámetro representa el atributo de término necesario en atom:category o el contenido de texto del elemento category en RSS 2.0.

Consulte también

Se aplica a

SyndicationCategory(String, String, String)

Crea un objeto SyndicationCategory con los valores de propiedad especificados.

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)

Parámetros

term
String

Platform::String

winrt::hstring

Cadena que identifica la categoría.

scheme
String

Platform::String

winrt::hstring

El esquema de la categoría.

label
String

Platform::String

winrt::hstring

Etiqueta para mostrar en aplicaciones de usuario final.

Consulte también

Se aplica a