Click here to Skip to main content
15,895,084 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

I am using Rss platform in my application.
C#
IFeedFolderEvents_Event feedFolderEvent = (IFeedFolderEvents_Event).(feedsManager.RootFolder).GetWatcher(
                    FEEDS_EVENTS_SCOPE.FES_ALL,
                    FEEDS_EVENTS_MASK.FEM_FEEDEVENTS); 

feedFolderEvent.FeedDownloadCompleted += new IFeedFolderEvents_FeedDownloadCompletedEventHandler(downloadedEvent_FeedDownloadCompleted);

feedFolderEvent.FeedItemCountChanged += new IFeedFolderEvents_FeedItemCountChangedEventHandler(feedFolderEvent_FeedItemCountChanged);

feedFolderEvent.FeedDownloading += new IFeedFolderEvents_FeedDownloadingEventHandler(fw_FeedDownloading);


in the above code,
C#
fw_FeedDownloading
is working. other two events are not received. I have changed the flags in Getwatcher function and worked with several changes. But always the feedDownloading event is working. the other two events has no effect on the application. I can't understand what is the problem.please help.

thank you.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900