OpenTween.TweenMain.GetRelatedTweetsAsync C# (CSharp) 메소드

GetRelatedTweetsAsync() 개인적인 메소드

private GetRelatedTweetsAsync ( RelatedPostsTabModel tab ) : Task
tab RelatedPostsTabModel
리턴 Task
        private async Task GetRelatedTweetsAsync(RelatedPostsTabModel tab)
        {
            await this.workerSemaphore.WaitAsync();

            try
            {
                await tab.RefreshAsync(this.tw, this._initial, this.workerProgress);

                this.RefreshTimeline();
            }
            catch (WebApiException ex)
            {
                this._myStatusError = true;
                this.StatusLabel.Text = $"Err:{ex.Message}(GetRelatedTweets)";
            }
            finally
            {
                this.workerSemaphore.Release();
            }
        }
TweenMain