SyndicationFeed.Generator Property

Definition

Gets or sets the generator of the 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

Property Value

The name of the tool that generated the feed.

Examples

The following code shows how to set the Generator of a 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>

The following XML shows how the Generator property is serialized to Atom 1.0 and RSS 2.0.

<generator>Sample Code</generator>

Remarks

When serialized to Atom 1.0 and RSS 2.0, the Generator is written to a <generator> element.

Applies to