OpenTween.TweenMain.GetRelatedTweetsAsync C# (CSharp) Method

GetRelatedTweetsAsync() private method

private GetRelatedTweetsAsync ( RelatedPostsTabModel tab ) : Task
tab RelatedPostsTabModel
return 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