Microsoft.Identity.Client.Utils.ScopeHelper
namespace Microsoft.Identity.Client.Utils
{
internal static class ScopeHelper
{
public static string OrderScopesAlphabetically(string originalScopes);
public static bool ScopeContains(ISet<string> outerSet, IEnumerable<string> possibleContainedSet);
public static HashSet<string> GetMsalScopes(HashSet<string> userScopes);
public static string GetMsalRuntimeScopes();
public static bool HasNonMsalScopes(HashSet<string> userScopes);
public static HashSet<string> ConvertStringToScopeSet(string singleString);
public static HashSet<string> CreateScopeSet(IEnumerable<string> input);
public static string ScopesToResource(string[] scopes);
public static string RemoveDefaultSuffixIfPresent(string resource);
}
}