Beispiel #1
0
        private async void k_Click_1(object sender, RoutedEventArgs e)
        {
            SyndicationClient client = new SyndicationClient();
            Uri feedUri = new Uri("http://mohammedemam.wordpress.com/feed/");
            var feed = await client.RetrieveFeedAsync(feedUri);

            FeedData feedData = new FeedData();

            foreach (SyndicationItem item in feed.Items)
            {
                FeedItem feedItem = new FeedItem();
                feedItem.Title = item.Title.Text;
                feedItem.PubDate = item.PublishedDate.DateTime;
                feedItem.Author = item.Authors[0].Name;
                // Handle the differences between RSS and Atom feeds.
                if (feed.SourceFormat == SyndicationFormat.Atom10)
                {
                    feedItem.Content = item.Content.Text;
                    feedItem.Link = new Uri("http://mohammedemam.wordpress.com/feed/" + item.Id);
                }
                else if (feed.SourceFormat == SyndicationFormat.Rss20)
                {
                    feedItem.Content = item.Summary.Text;
                    feedItem.Link = item.Links[0].Uri;
                }
                feedData.Items.Add(feedItem);
            }
            ItemListView.DataContext = feedData.Items;
        }   
Beispiel #2
0
 private async void ItemListView_SelectionChanged(object sender, SelectionChangedEventArgs e)
 {
     SyndicationClient client = new SyndicationClient();
     Uri feedUri = new Uri("http://mohammedemam.wordpress.com/feed/");
     var feed = await client.RetrieveFeedAsync(feedUri);
     FeedItem f = new FeedItem();
     f.Link =  feed.Items[ItemListView.SelectedIndex].Links[0].Uri;
     web.Navigate(f.Link);
     web.Visibility = Visibility.Visible;
 }