OpenTween.TweenMain.GetReplyAsync C# (CSharp) Method

GetReplyAsync() private method

private GetReplyAsync ( bool loadMore ) : Task
loadMore bool
return Task
        private async Task GetReplyAsync(bool loadMore)
        {
            await this.workerSemaphore.WaitAsync();

            try
            {
                var replyTab = this._statuses.GetTabByType<MentionsTabModel>();
                await replyTab.RefreshAsync(this.tw, loadMore, this._initial, this.workerProgress);

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

Same methods

TweenMain::GetReplyAsync ( ) : Task
TweenMain