Udostępnij za pośrednictwem


SyndicationFeed.Generator Właściwość

Definicja

Pobiera lub ustawia generator źródła danych.

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

Wartość właściwości

Nazwa narzędzia, które wygenerowało kanał informacyjny.

Przykłady

Poniższy kod pokazuje, jak ustawić element Generator typu 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>

Poniższy kod XML pokazuje, jak Generator właściwość jest serializowana do atomów 1.0 i RSS 2.0.

<generator>Sample Code</generator>

Uwagi

W przypadku serializacji do atomów 1.0 i RSS 2.0 element Generator jest zapisywany w elemencie <generator> .

Dotyczy