1 interface inheriting from IDesignerLoaderHost
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\Serialization\IDesignerLoaderHost.cs (1)
43public interface IDesignerLoaderHost2 : IDesignerLoaderHost
16 references to IDesignerLoaderHost
netstandard (1)
netstandard.cs (1)
281[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.Serialization.IDesignerLoaderHost))]
System (1)
src\libraries\shims\System\ref\System.cs (1)
267[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.Serialization.IDesignerLoaderHost))]
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\Serialization\DesignerLoader.cs (1)
38public abstract void BeginLoad(IDesignerLoaderHost host);
System.Windows.Forms.Design (9)
System\ComponentModel\Design\DesignerHost.cs (3)
356((IDesignerLoaderHost)this).EndLoad(string.Empty, successful: false, new object[] { e }); 1051void IDesignerLoaderHost.EndLoad(string? rootClassName, bool successful, ICollection? errorCollection) 1159void IDesignerLoaderHost.Reload()
System\ComponentModel\Design\DesignSurface.cs (1)
549public override void BeginLoad(IDesignerLoaderHost loaderHost)
System\ComponentModel\Design\Serialization\BasicDesignerLoader.cs (5)
35private IDesignerLoaderHost? _host; 77protected IDesignerLoaderHost LoaderHost 138public override void BeginLoad(IDesignerLoaderHost host) 294IDesignerLoaderHost? host = _host; 750IDesignerLoaderHost host = LoaderHost;
System.Windows.Forms.Design.Tests (4)
System\ComponentModel\Design\DesignerHostTests.cs (4)
2280.Setup(l => l.BeginLoad(It.IsAny<IDesignerLoaderHost>())); 2285.Setup(l => l.BeginLoad(It.IsAny<IDesignerLoaderHost>())); 2295.Setup(l => l.BeginLoad(It.IsAny<IDesignerLoaderHost>())); 2491.Setup(l => l.BeginLoad((IDesignerLoaderHost)surface.ComponentContainer));