AdvancedLauncher.Management.DialogManager.ShowErrorDialogAsyncInternal C# (CSharp) Method

ShowErrorDialogAsyncInternal() private method

Error MessageBox Async
private ShowErrorDialogAsyncInternal ( string text ) : Task
text string Content of error
return Task
        private async Task<bool> ShowErrorDialogAsyncInternal(string text) {
            return await ShowMessageDialogAsyncInternal(LanguageManager.Model.Error, text);
        }