internal void Add(string key, ResolvedPrincipal value) { _resolvedPrincipalDictionary.TryAdd(key.ToUpper(), value); }
internal void Add(UserDomainKey key, ResolvedPrincipal value) { _resolvedAccountNameDictionary.TryAdd(key, value); }
internal bool GetPrincipal(string key, out ResolvedPrincipal value) { return(_resolvedPrincipalDictionary.TryGetValue(key.ToUpper(), out value)); }
internal bool GetResolvedAccount(UserDomainKey key, out ResolvedPrincipal value) { return(_resolvedAccountNameDictionary.TryGetValue(key, out value)); }