public static VstsTokenScope operator -(VstsTokenScope left, VstsTokenScope right)
        {
            var set = TokenScope.ExceptWith(left as TokenScope, right as TokenScope);

            return(new VstsTokenScope(set));
        }
Exemplo n.º 2
0
        public static GitHubTokenScope operator -(GitHubTokenScope left, GitHubTokenScope right)
        {
            var set = TokenScope.ExceptWith(left as TokenScope, right as TokenScope);

            return(new GitHubTokenScope(set));
        }