Feed Class

Summary

Feed interface
graph BT Type-->Base0["FeedMetadata"] click Base0 "/api/Wyam.Feeds.Syndication/FeedMetadata" Base0-->Base1["Object"] Type-.->Interface0["IFeed"] click Interface0 "/api/Wyam.Feeds.Syndication/IFeed" Type-.->Interface1["IFeedMetadata"] click Interface1 "/api/Wyam.Feeds.Syndication/IFeedMetadata" Type-.->Interface2["INamespaceProvider"] click Interface2 "/api/Wyam.Feeds.Syndication/INamespaceProvider" Type["Feed"] class Type type-node

Syntax

public class Feed : FeedMetadata, IFeed, IFeedMetadata, INamespaceProvider

Properties

Name Value Summary
Author string
Gets the author
Inherited from FeedMetadata
Copyright string
Gets the copyright
Description string
Gets the description
Inherited from FeedMetadata
FeedType FeedType
Gets the type of the feed.
ID Uri
Gets a unique identifier
Inherited from FeedMetadata
ImageLink Uri
Gets a link to a related image
Inherited from FeedMetadata
Items List<FeedItem>
Link Uri
Gets the link to the full version
Inherited from FeedMetadata
MimeType string
Gets the MIME Type designation for the feed
Published Nullable<DateTime>
Gets the initial date published
Inherited from FeedMetadata
Title string
Gets the title
Inherited from FeedMetadata
Updated Nullable<DateTime>
Gets the date last updated
Inherited from FeedMetadata

Methods

Name Value Summary
AddNamespaces(XmlSerializerNamespaces) void
Adds additional namespace URIs for the feed
GitHub