Example #1
0
 public ClientScopeDto FindScope(string scope)
 {
     return AllowedScopes.FirstOrDefault(r => r.Scope == scope);
 }
Example #2
0
 public virtual ClientScope FindScope(string scope)
 {
     return(AllowedScopes.FirstOrDefault(r => r.Scope == scope));
 }