3 overrides of GetCache
System.ComponentModel.TypeConverter (3)
System\ComponentModel\DelegatingTypeDescriptionProvider.cs (1)
55public override IDictionary? GetCache(object instance) => Provider.GetCache(instance);
System\ComponentModel\ReflectTypeDescriptionProvider.cs (1)
319public override IDictionary? GetCache(object instance)
System\ComponentModel\TypeDescriptor.cs (1)
3269public override IDictionary? GetCache(object instance)
10 references to GetCache
System.ComponentModel.TypeConverter (3)
System\ComponentModel\DelegatingTypeDescriptionProvider.cs (1)
55public override IDictionary? GetCache(object instance) => Provider.GetCache(instance);
System\ComponentModel\TypeDescriptionProvider.cs (1)
91public virtual IDictionary? GetCache(object instance) => _parent?.GetCache(instance);
System\ComponentModel\TypeDescriptor.cs (1)
3273return Provider.GetCache(instance);
System.Windows.Forms.Design.Tests (4)
System\ComponentModel\Design\DesignerHostTests.cs (3)
663.Setup(p => p.GetCache(component)) 753.Setup(p => p.GetCache(It.IsAny<object>())) 850.Setup(p => p.GetCache(component))
System\ComponentModel\Design\Serialization\DesignerSerializationManagerTests.cs (1)
248.Setup(p => p.GetCache(provider))
System.Windows.Forms.Tests (3)
System\Windows\Forms\ButtonBaseTests.cs (1)
670.Setup(p => p.GetCache(control))
System\Windows\Forms\ListBindingHelperTests.cs (1)
205.Setup(p => p.GetCache(instance))
System\Windows\Forms\TabPageTests.cs (1)
802.Setup(p => p.GetCache(control))