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

            return(new VstsTokenScope(set));
        }
Esempio n. 2
0
        public static GitHubTokenScope operator ^(GitHubTokenScope left, GitHubTokenScope right)
        {
            var set = TokenScope.SymmetricExceptWith(left as TokenScope, right as TokenScope);

            return(new GitHubTokenScope(set));
        }