Condividi tramite


SyndicationCategory Costruttori

Definizione

Inizializza una nuova istanza della classe SyndicationCategory.

Overload

SyndicationCategory()

Inizializza una nuova istanza della classe SyndicationCategory.

SyndicationCategory(SyndicationCategory)

Inizializza una nuova istanza della classe SyndicationCategory con l'istanza di SyndicationCategory specificata.

SyndicationCategory(String)

Inizializza una nuova istanza della classe SyndicationCategory con il nome specificato.

SyndicationCategory(String, String, String)

Consente di inizializzare una nuova istanza della classe SyndicationCategory con nome, schema ed etichetta specificati.

SyndicationCategory()

Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs

Inizializza una nuova istanza della classe SyndicationCategory.

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

Si applica a

SyndicationCategory(SyndicationCategory)

Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs

Inizializza una nuova istanza della classe SyndicationCategory con l'istanza di SyndicationCategory specificata.

protected:
 SyndicationCategory(System::ServiceModel::Syndication::SyndicationCategory ^ source);
protected SyndicationCategory (System.ServiceModel.Syndication.SyndicationCategory source);
new System.ServiceModel.Syndication.SyndicationCategory : System.ServiceModel.Syndication.SyndicationCategory -> System.ServiceModel.Syndication.SyndicationCategory
Protected Sub New (source As SyndicationCategory)

Parametri

source
SyndicationCategory

Istanza di SyndicationCategory per inizializzare la nuova istanza di SyndicationCategory.

Si applica a

SyndicationCategory(String)

Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs

Inizializza una nuova istanza della classe SyndicationCategory con il nome specificato.

public:
 SyndicationCategory(System::String ^ name);
public SyndicationCategory (string name);
new System.ServiceModel.Syndication.SyndicationCategory : string -> System.ServiceModel.Syndication.SyndicationCategory
Public Sub New (name As String)

Parametri

name
String

Nome della categoria.

Esempio

Nel codice seguente viene mostrato come creare aggiungere una classe SyndicationFeed e aggiungere un elemento SyndicationItem con una categoria SyndicationCategory.

using System;
using System.ServiceModel.Syndication;
using System.Collections.Generic;
using System.Collections.ObjectModel;

namespace SyndicationCategorySample
{
    class Program
    {
        static void Main(string[] args)
        {
            SyndicationFeed myFeed = new SyndicationFeed("My Test Feed",
                                                        "This is a test feed",
                                                        new Uri("http://FeedServer/Test"), "MyFeedId", DateTime.Now);
            SyndicationItem myItem = new SyndicationItem("Item One Title",
                                                         "Item One Content",
                                                         new Uri("http://FeedServer/Test/ItemOne"));
            myItem.Categories.Add(new SyndicationCategory("MyCategory"));
            Collection<SyndicationItem> items = new Collection<SyndicationItem>();
            items.Add(myItem);
            myFeed.Items = items;
        }
    }
}
Imports System.ServiceModel.Syndication
Imports System.Collections.Generic
imports System.Collections.ObjectModel


Module Program

    Sub Main()
        Dim myFeed As New SyndicationFeed("My Test Feed", _
                                                     "This is a test feed", _
                                                     New Uri("http://FeedServer/Test"), "MyFeedId", DateTime.Now)
        Dim myItem As New SyndicationItem("Item One Title", _
                                                     "Item One Content", _
                                                     New Uri("http://FeedServer/Test/ItemOne"))
        myItem.Categories.Add(New SyndicationCategory("MyCategory"))
        Dim items As New Collection(Of SyndicationItem)()
        items.Add(myItem)
        myFeed.Items = items
    End Sub

End Module

Si applica a

SyndicationCategory(String, String, String)

Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs
Origine:
SyndicationCategory.cs

Consente di inizializzare una nuova istanza della classe SyndicationCategory con nome, schema ed etichetta specificati.

public:
 SyndicationCategory(System::String ^ name, System::String ^ scheme, System::String ^ label);
public SyndicationCategory (string name, string scheme, string label);
new System.ServiceModel.Syndication.SyndicationCategory : string * string * string -> System.ServiceModel.Syndication.SyndicationCategory
Public Sub New (name As String, scheme As String, label As String)

Parametri

name
String

Nome della categoria.

scheme
String

Un URI (Uniform Resource Identifier) che rappresenta lo schema di categorizzazione a cui appartiene la categoria.

label
String

Attributo leggibile che descrive la categoria.

Esempio

Nel codice seguente viene illustrato come chiamare il costruttore.

SyndicationCategory category = new SyndicationCategory("MyCategory", "http://contoso/MyCategory", "Contoso Category");
Dim category As New SyndicationCategory("MyCategory", "http://contoso/MyCategory", "Contoso Category")

Si applica a