Microsoft Feed Manager Events Example

Thanks to Matt Dotson, who gave some code up on GotdotNet that shows how to get the GetWatcher in the Feed Management Api to work.I had a problem the other day with it. I couldn’t get the Watcher attached to the feed. It was a simple casting problem and my misunderstanding of Interop.Here is my codeFeedsManagerClass fmc = new FeedsManagerClass();IFeed f = (IFeed) fmc.GetFeed(“Internet Explorer Team Blog”); IFeedEvents_Event ife = (IFeedEvents_Event) f.


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan

<p>Thanks to Matt Dotson, who gave some code up on GotdotNet that shows how to get the GetWatcher in the Feed Management Api to work.<p />I had a problem the other day with it. I couldn't get the Watcher attached to the feed. It was a simple casting problem and my misunderstanding of Interop.<p />Here is my code<p />FeedsManagerClass fmc = new FeedsManagerClass();IFeed f = (IFeed) fmc.GetFeed("Internet Explorer Team Blog"); <strong><em>IFeedEvents_Event</em></strong> ife = (<em><strong>IFeedEvents_Event</strong></em>) f.GetWatcher(FEEDS_EVENTS_SCOPE.FES_ALL, FEEDS_EVENTS_MASK.FEM_FEEDEVENTS );ife.FeedItemCountChanged += new IFeedEvents_FeedItemCountChangedEventHandler(ife_FeedItemCountChanged);ife.FeedDownloadCompleted += new IFeedEvents_FeedDownloadCompletedEventHandler(ife_FeedDownloadCompleted);f.Download();<p />Now my code works. I was casting to an FeedsWatcherClass rather than the IFeedEvents_Event interface.<p />Silly me.<p /></p>


This content originally appeared on Modern Web Development with Chrome and was authored by Paul Kinlan


Print Share Comment Cite Upload Translate Updates
APA

Paul Kinlan | Sciencx (2006-02-10T00:00:00+00:00) Microsoft Feed Manager Events Example. Retrieved from https://www.scien.cx/2006/02/10/microsoft-feed-manager-events-example/

MLA
" » Microsoft Feed Manager Events Example." Paul Kinlan | Sciencx - Friday February 10, 2006, https://www.scien.cx/2006/02/10/microsoft-feed-manager-events-example/
HARVARD
Paul Kinlan | Sciencx Friday February 10, 2006 » Microsoft Feed Manager Events Example., viewed ,<https://www.scien.cx/2006/02/10/microsoft-feed-manager-events-example/>
VANCOUVER
Paul Kinlan | Sciencx - » Microsoft Feed Manager Events Example. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2006/02/10/microsoft-feed-manager-events-example/
CHICAGO
" » Microsoft Feed Manager Events Example." Paul Kinlan | Sciencx - Accessed . https://www.scien.cx/2006/02/10/microsoft-feed-manager-events-example/
IEEE
" » Microsoft Feed Manager Events Example." Paul Kinlan | Sciencx [Online]. Available: https://www.scien.cx/2006/02/10/microsoft-feed-manager-events-example/. [Accessed: ]
rf:citation
» Microsoft Feed Manager Events Example | Paul Kinlan | Sciencx | https://www.scien.cx/2006/02/10/microsoft-feed-manager-events-example/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.