GitScc.SccProviderService.SetSolutionExplorerTitle C# (CSharp) Method

SetSolutionExplorerTitle() private method

private SetSolutionExplorerTitle ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
        private async Task SetSolutionExplorerTitle()
        {
            var caption = "Solution Explorer";
            BranchName = RepositoryManager.Instance?.SolutionTracker?.CurrentBranchDisplayName;
            if (!string.IsNullOrEmpty(BranchName))
            {
                caption += " (" + BranchName + ")";
                await SetSolutionExplorerTitle(caption);
            }
        }

Same methods

SccProviderService::SetSolutionExplorerTitle ( string message ) : System.Threading.Tasks.Task
SccProviderService