13 references to Hashtable
mscorlib (4)
system\collections\hashtable.cs (4)
248public Hashtable() : this(0, 1.0f) { 258public Hashtable(int capacity) : this(capacity, 1.0f) { 315public Hashtable(int capacity, float loadFactor, IHashCodeProvider hcp, IComparer comparer) : this(capacity, loadFactor) { 324public Hashtable(int capacity, float loadFactor, IEqualityComparer equalityComparer) : this(capacity, loadFactor) {
PresentationCore (2)
Core\CSharp\MS\Internal\Automation\EventMap.cs (1)
149_eventsTable = new Hashtable(20, .1f);
Core\CSharp\MS\Internal\Automation\EventPropertyMap.cs (1)
84_propertyTable = new Hashtable(20, .1f);
UIAutomationClient (2)
MS\Internal\Automation\ProxyManager.cs (2)
844private static Hashtable _classHandlers = new Hashtable(22, 1.0f); 848private static Hashtable _imageOnlyHandlers = new Hashtable(0,1.0f);
UIAutomationClientsideProviders (5)
MS\Internal\AutomationProxies\EventManager.cs (5)
520_objectIdWindow = new Hashtable(7, .1f); 531_objectIdClient = new Hashtable(20, .1f); 557_objectIdScroll = new Hashtable(3, .1f); 565_objectIdCaret = new Hashtable(1, .1f); 571_objectIdMenu = new Hashtable(1, .1f);