1 write to _componentIdsByType
Microsoft.TemplateEngine.Edge (1)
Settings\ComponentManager.cs (1)
40_componentIdsByType = new Dictionary<Type, HashSet<Guid>>();
7 references to _componentIdsByType
Microsoft.TemplateEngine.Edge (7)
Settings\ComponentManager.cs (7)
47_componentIdsByType[interfaceType] = bucket.Value; 72if (!_componentIdsByType.TryGetValue(typeof(T), out HashSet<Guid> ids)) 76_componentIdsByType[typeof(T)] = ids; 220if (!_componentIdsByType.TryGetValue(interfaceType, out HashSet<Guid> idsForInterfaceType)) 222_componentIdsByType[interfaceType] = idsForInterfaceType = new HashSet<Guid>(); 287if (!_componentIdsByType.TryGetValue(type, out HashSet<Guid> ids)) 290_componentIdsByType[type] = ids;