4 instantiations of ExtensionCacheValue
System.DirectoryServices.AccountManagement (4)
System\DirectoryServices\AccountManagement\Principal.cs (4)
701_extensionCache.properties[attribute] = new ExtensionCacheValue((object[])value); 703_extensionCache.properties[attribute] = new ExtensionCacheValue(new object[] { value }); 716_extensionCache.properties[attribute] = new ExtensionCacheValue((object[])value, objectType, mt); 718_extensionCache.properties[attribute] = new ExtensionCacheValue(new object[] { value }, objectType, mt);
7 references to ExtensionCacheValue
System.DirectoryServices.AccountManagement (7)
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_LoadStore.cs (1)
1327foreach (KeyValuePair<string, ExtensionCacheValue> kvp in cacheValues.properties)
System\DirectoryServices\AccountManagement\AD\ADStoreCtx_Query.cs (1)
978foreach (KeyValuePair<string, ExtensionCacheValue> kvp in ec.properties)
System\DirectoryServices\AccountManagement\ExtensionCache.cs (4)
52private readonly Dictionary<string, ExtensionCacheValue> _cache = new Dictionary<string, ExtensionCacheValue>(); 56internal bool TryGetValue(string attr, out ExtensionCacheValue o) 61internal Dictionary<string, ExtensionCacheValue> properties
System\DirectoryServices\AccountManagement\Principal.cs (1)
625ExtensionCacheValue val;