2 implementations of IDictionaryService
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.StubSite.cs (1)
19private class StubSite : ISite, IDictionaryService
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.Site.cs (1)
13internal class Site : ISite, IServiceContainer, IDictionaryService
39 references to IDictionaryService
netstandard (1)
netstandard.cs (1)
258[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IDictionaryService))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
244[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IDictionaryService))]
System.ComponentModel.TypeConverter (9)
System\ComponentModel\ReflectEventDescriptor.cs (6)
197IDictionaryService? dict = (IDictionaryService?)site.GetService(typeof(IDictionaryService)); 473IDictionaryService? dict = (IDictionaryService?)site.GetService(typeof(IDictionaryService));
System\ComponentModel\ReflectTypeDescriptionProvider.cs (3)
323IDictionaryService? ds = comp.Site.GetService(typeof(IDictionaryService)) as IDictionaryService;
System.Windows.Forms (4)
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.StubSite.cs (4)
71return service == typeof(IDictionaryService) ? this : _owner.Site?.GetService(service); 77object? IDictionaryService.GetKey(object? value) 99object? IDictionaryService.GetValue(object key) 111void IDictionaryService.SetValue(object key, object? value)
System.Windows.Forms.Design (24)
System\ComponentModel\Design\DesignerHost.Site.cs (4)
49object? IDictionaryService.GetKey(object? value) 69object? IDictionaryService.GetValue(object key) 83void IDictionaryService.SetValue(object key, object? value) 153if (service == typeof(IDictionaryService))
System\ComponentModel\Design\EventBindingService.EventPropertyDescriptor.cs (4)
102IDictionaryService? ds = site.GetService<IDictionaryService>(); 180if (!site.TryGetService(out IDictionaryService? dictionaryService)) 182throw new InvalidOperationException(string.Format(SR.EventBindingServiceMissingService, nameof(IDictionaryService)))
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.ModifiersExtenderProvider.cs (5)
69if (comp.Site.TryGetService(out IDictionaryService? dictionary)) 95if (comp.Site.TryGetService(out IDictionaryService? dictionary)) 129IDictionaryService? dictionary = site.GetService<IDictionaryService>(); 168if (comp.Site.TryGetService(out IDictionaryService? dictionary))
System\Windows\Forms\Design\CommandSet.cs (2)
217IDictionaryService? ds = site.GetService<IDictionaryService>();
System\Windows\Forms\Design\ComponentTray.cs (5)
1921IDictionaryService ds = (IDictionaryService)site.GetService(typeof(IDictionaryService)); 2016if (site.TryGetService(out IDictionaryService ds)) 2036if (component.Site.TryGetService(out IDictionaryService ds))
System\Windows\Forms\Design\TreeNodeCollectionEditor.cs (4)
122IDictionaryService dictionaryService = (IDictionaryService)TreeView.Site.GetService(typeof(IDictionaryService)); 146TreeView.Site.TryGetService(out IDictionaryService dictionaryService);