SyndicationFeed.Generator 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 generatore di un feed.
public:
property System::String ^ Generator { System::String ^ get(); void set(System::String ^ value); };
public string Generator { get; set; }
member this.Generator : string with get, set
Public Property Generator As String
Valore della proprietà
Il nome dello strumento che ha generato il feed.
Esempio
Nel codice seguente viene illustrato come impostare Generator di SyndicationFeed:
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à Generator per i formati Atom 1.0 e RSS 2.0.
<generator>Sample Code</generator>
Commenti
Quando serializzato in Atom 1.0 e RSS 2.0, viene Generator scritto in un <generator>
elemento.