コード例 #1
0
ファイル: Cache.cs プロジェクト: sasqwatch/SharpHound3
 internal void Add(string key, LdapTypeEnum type)
 {
     _sidTypeDictionary.TryAdd(key, type);
 }
コード例 #2
0
ファイル: Cache.cs プロジェクト: sasqwatch/SharpHound3
 internal bool GetSidType(string key, out LdapTypeEnum type)
 {
     return(_sidTypeDictionary.TryGetValue(key.ToUpper(), out type));
 }