diff options
Diffstat (limited to 'src/DotNetOpenAuth.OAuth2/OAuth2/StandardScopeSatisfiedCheck.cs')
-rw-r--r-- | src/DotNetOpenAuth.OAuth2/OAuth2/StandardScopeSatisfiedCheck.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.OAuth2/OAuth2/StandardScopeSatisfiedCheck.cs b/src/DotNetOpenAuth.OAuth2/OAuth2/StandardScopeSatisfiedCheck.cs index 1370057..684e4a8 100644 --- a/src/DotNetOpenAuth.OAuth2/OAuth2/StandardScopeSatisfiedCheck.cs +++ b/src/DotNetOpenAuth.OAuth2/OAuth2/StandardScopeSatisfiedCheck.cs @@ -28,7 +28,7 @@ namespace DotNetOpenAuth.OAuth2 { /// </para> /// <para>Great care should be taken in implementing this method as this is a critical security module for the authorization and resource servers.</para> /// </remarks> - public bool IsScopeSatisfied(ISet<string> requiredScope, ISet<string> grantedScope) { + public bool IsScopeSatisfied(HashSet<string> requiredScope, HashSet<string> grantedScope) { Requires.NotNull(requiredScope, "requiredScope"); Requires.NotNull(grantedScope, "grantedScope"); return grantedScope.IsSupersetOf(requiredScope); |