Click here to Skip to main content
15,917,005 members

Comments by Shubhanshu Singh (Top 8 by date)

Shubhanshu Singh 10-Sep-13 4:55am View    
okay!! Finally its done! It was fault on my part .I used task and then fetched the feed and after that from same task used
this.Dispatcher.RunAsync() to show the data feed on UI thread.
Thanks for the help.
Shubhanshu Singh 9-Sep-13 14:39pm View    
OH ! that really helped . Thanks a lot !
//Life.Runs.On.Code
Shubhanshu Singh 9-Sep-13 14:35pm View    
Actually ,there are other elements to be loaded other then just rss feed on same page so I used timer so that as soon as page is loaded timer start and rss feed is loaded using async - await
SyndicationFeed feed = await Client.RetrieveFeedAsync(FeedUri);
so before it is loaded other element which application will show before feed are loaded and feeds are retrieved by async operation.
I did this because my page doesn't respond to any input when feeds are fetched . - main issue is this!!

Is there any thing be done while feeds are fetched at the same time UI respond to any other user input ?????

Shubhanshu Singh 9-Sep-13 12:48pm View    
can u just give me an example where I can store object in ListViewItem tag property ,means just the code ,then i will get an idea how to do it ...????? it will be really helpful .Thanx
Shubhanshu Singh 9-Sep-13 12:43pm View    
Now what I did was ,in order to navigate to rss feed page quickly (so that user doesn't feel lack of flexibility),I used Dispatcher Timer and on timer tick event it fetches feed and and at the same time other info can be displayed on UI screen.
This is pretty much solution what I tried for now.