LoadFeedsFromAzure() публичный Метод

public LoadFeedsFromAzure ( FeedLoadOption option ) : void
option FeedLoadOption
Результат void
Пример #1
0
        private void SetShowBadgesForHub()
        {
            var fr = new FeedRegistry(this.id);

            fr.LoadFeedsFromAzure(FeedLoadOption.all);
            try
            {
                this.show_eventbrite_badge = Utils.ShowEventBriteBadge(this, fr);
                this.show_eventful_badge   = Utils.ShowEventfulBadge(this);
                this.show_meetup_badge     = Utils.ShowMeetupBadge(this, fr);
                this.show_facebook_badge   = Utils.ShowFacebookBadge(fr);
            }
            catch (Exception e)
            {
                GenUtils.PriorityLogMsg("exception", "SetShowBadgesForHub: " + this.id, e.Message + e.StackTrace);
            }
        }
Пример #2
0
 private void SetShowBadgesForHub()
 {
     var fr = new FeedRegistry(this.id);
     fr.LoadFeedsFromAzure(FeedLoadOption.all);
     try
     {
         this.show_eventbrite_badge = Utils.ShowEventBriteBadge(this, fr);
         this.show_eventful_badge = Utils.ShowEventfulBadge(this);
         this.show_meetup_badge = Utils.ShowMeetupBadge(this, fr);
         this.show_facebook_badge = Utils.ShowFacebookBadge(fr);
     }
     catch (Exception e)
     {
         GenUtils.PriorityLogMsg("exception", "SetShowBadgesForHub: " + this.id, e.Message + e.StackTrace);
     }
 }