Exemple #1
0
 public void RemoveScope(string scope)
 {
     AllowedScopes.RemoveAll(r => r.Scope == scope);
 }
Exemple #2
0
 public void RemoveScope(string scope)
 {
     AllowedScopes.RemoveAll(x => x.Scope.Equals(scope, StringComparison.CurrentCultureIgnoreCase));
 }