The easiest way to add custom elements to a syndicated (ATOM/RSS feed) is to use an XElement, like this:
SyndicationFeed feed = new SyndicationFeed("FeedName", "Feed description");
//fill feed with items (omitted)
XNamespace ns = "http://tempuri.org/myapp";
feed.ElementExtensions.Add(new XElement(ns + "myCustomProperty", "hello"));
return new Atom10FeedFormatter(feed) // to return as an atom feed
Happy feeding!
Thursday, August 28, 2008
Wednesday, August 6, 2008
Sunday, August 3, 2008
Entity Framework will hit with VS2008 SP1
Finally its coming! With Visual Studio SP1, the final version of entity framework will be included.
I'm expecting the .NET 3.5 certification exam to go live shortly after, finally!
I'm expecting the .NET 3.5 certification exam to go live shortly after, finally!
Subscribe to:
Posts (Atom)