SyndicationFeed.Title Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene o imposta il titolo del feed.
public:
property System::ServiceModel::Syndication::TextSyndicationContent ^ Title { System::ServiceModel::Syndication::TextSyndicationContent ^ get(); void set(System::ServiceModel::Syndication::TextSyndicationContent ^ value); };
public System.ServiceModel.Syndication.TextSyndicationContent Title { get; set; }
member this.Title : System.ServiceModel.Syndication.TextSyndicationContent with get, set
Public Property Title As TextSyndicationContent
Valore della proprietà
Istanza di TextSyndicationContent che contiene il titolo del feed.
Esempio
Nel codice seguente viene illustrato come impostare la proprietà Title di un'istanza di SyndicationFeed.
SyndicationFeed feed = new SyndicationFeed();
feed.Title = new TextSyndicationContent("My Feed Title");
Dim feed As New SyndicationFeed()
feed.Title = New TextSyndicationContent("My Feed Title")
Nel codice XML seguente viene mostrato come serializzare la proprietà Title per il formato Atom 1.0.
SyndicationFeed feed = new SyndicationFeed("Feed Title", "Feed Description", new Uri("http://Feed/Alternate/Link"), "FeedID", DateTime.Now);
feed.Generator = "Generator Name or Description";
Dim feed As New SyndicationFeed("Feed Title", "Feed Description", New Uri("http:'Feed/Alternate/Link"), "FeedID", DateTime.Now)
feed.Generator = "Generator Name or Description"
<title type="text">Feed Title</title>
Nel codice XML seguente viene mostrato come serializzare la proprietà Title per il formato RSS 2.0.
<title>Titolo feed</title>
Commenti
Quando serializzato in Atom 1.0 e RSS 2.0, la Title proprietà viene scritta in un <title>
elemento .