示例#1
0
 internal void Add(string key, ResolvedPrincipal value)
 {
     _resolvedPrincipalDictionary.TryAdd(key.ToUpper(), value);
 }
示例#2
0
 internal void Add(UserDomainKey key, ResolvedPrincipal value)
 {
     _resolvedAccountNameDictionary.TryAdd(key, value);
 }
示例#3
0
 internal bool GetPrincipal(string key, out ResolvedPrincipal value)
 {
     return(_resolvedPrincipalDictionary.TryGetValue(key.ToUpper(), out value));
 }
示例#4
0
 internal bool GetResolvedAccount(UserDomainKey key, out ResolvedPrincipal value)
 {
     return(_resolvedAccountNameDictionary.TryGetValue(key, out value));
 }