1 interface inheriting from IServiceContainer
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\IDesignerHost.cs (1)
12public interface IDesignerHost : IServiceContainer
1 implementation of IServiceContainer
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\ServiceContainer.cs (1)
12public class ServiceContainer : IServiceContainer, IDisposable
10 references to IServiceContainer
netstandard (1)
netstandard.cs (1)
269[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IServiceContainer))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
255[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.IServiceContainer))]
System.ComponentModel.TypeConverter (8)
System\ComponentModel\Design\ServiceContainer.cs (7)
16private static readonly Type[] s_defaultServices = new Type[] { typeof(IServiceContainer), typeof(ServiceContainer) }; 36private IServiceContainer? Container 38get => _parentProvider?.GetService(typeof(IServiceContainer)) as IServiceContainer; 70IServiceContainer? container = Container; 111IServiceContainer? container = Container; 227IServiceContainer? container = Container;
System\ComponentModel\Design\ServiceCreatorCallback.cs (1)
9public delegate object? ServiceCreatorCallback(IServiceContainer container, Type serviceType);