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

            return(new VstsTokenScope(set));
        }
コード例 #2
0
        public static GitHubTokenScope operator &(GitHubTokenScope left, GitHubTokenScope right)
        {
            var set = TokenScope.IntersectWith(left as TokenScope, right as TokenScope);

            return(new GitHubTokenScope(set));
        }