/// <summary> /// Provides example code for the LoadAsync(Uri, Object) method /// </summary> public static void LoadAsyncExample() { AtomFeed feed = new AtomFeed(); feed.Loaded += new EventHandler <SyndicationResourceLoadedEventArgs>(FeedLoadedCallback); feed.LoadAsync(new Uri("http://news.google.com/?output=atom"), null); }
//============================================================ // ASYNC METHODS //============================================================ /// <summary> /// Provides example code for the LoadAsync(Uri, Object) method /// </summary> public static void LoadAsyncExample() { #region LoadAsync(Uri source, Object userToken) //------------------------------------------------------------ // Load feed asynchronously using event-based notification //------------------------------------------------------------ AtomFeed feed = new AtomFeed(); feed.Loaded += new EventHandler <SyndicationResourceLoadedEventArgs>(FeedLoadedCallback); feed.LoadAsync(new Uri("http://news.google.com/?output=atom"), null); #endregion }