SyndicationFeed.Generator Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Samarbeta med oss på GitHub
Källan för det här innehållet finns på GitHub, där du även kan skapa och granska ärenden och pull-begäranden. Se vår deltagarguide för mer information.