EventFeed.cs CampusAppWP8::Api::Events::EventFeed CampusAppWP8::Api::Events usingSystem; usingSystem.Collections.Generic; usingSystem.Linq; usingSystem.Text; usingSystem.Threading.Tasks; usingCampusAppWP8.Model.events_news; usingCampusAppWP8.Utility; namespaceCampusAppWP8.Api.Events { publicclassEventFeed:XmlFeed<RSSViewModel> { publicEventFeed():base(URLList.EventsFeedURL,"EventFeed.xml") { } protectedoverrideboolCheckIsModelUpToDate() { returnfalse; } protectedoverrideboolCheckIsFileUpToDate() { returntrue; } } }