public static bool operator !=(VstsTokenScope left, VstsTokenScope right)
 => !TokenScope.Equals(left as TokenScope, right as TokenScope);
 public bool Equals(VstsTokenScope other)
 => TokenScope.Equals(this as TokenScope, other as TokenScope);
Exemple #3
0
 public static bool operator !=(GitHubTokenScope left, GitHubTokenScope right)
 => !TokenScope.Equals(left as TokenScope, right as TokenScope);
 public override bool Equals(object obj)
 => TokenScope.Equals(this as TokenScope, obj);
Exemple #5
0
 public bool Equals(GitHubTokenScope other)
 => TokenScope.Equals(this as TokenScope, other as TokenScope);