Microsoft.Alm.Authentication.SecretCache.GetTargetName C# (CSharp) Method

GetTargetName() private method

Formats a TargetName string based on the TargetUri base on the format started by git-credential-winstore
private GetTargetName ( TargetUri targetUri ) : string
targetUri TargetUri Uri of the target
return string
        private string GetTargetName(TargetUri targetUri)
        {
            BaseSecureStore.ValidateTargetUri(targetUri);

            return _getTargetName(targetUri, _namespace);
        }