コード例 #1
0
 public async void GetPostIcons()
 {
     PostIconManager postIconManager = new PostIconManager();
     if (!PostIconList.Any())
     {
         PostIconList = await postIconManager.GetPostIconList(_forumEntity);
     }
 }
コード例 #2
0
 public async void GetPostIcons()
 {
     PostIconManager postIconManager = new PostIconManager();
     if (PostIconList.Any()) return;
     try
     {
         PostIconList = await postIconManager.GetPostIconList(_forumEntity);
     }
     catch (Exception ex)
     {
         AwfulDebugger.SendMessageDialogAsync("Could not get post icons", ex);
     }
 }