1 implementation of IDesignerLoaderHost2
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.cs (1)
17internal sealed partial class DesignerHost : Container, IDesignerLoaderHost2, IDesignerHostTransactionState, IComponentChangeService, IReflect
7 references to IDesignerLoaderHost2
netstandard (1)
netstandard.cs (1)
282[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.Serialization.IDesignerLoaderHost2))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
268[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.Serialization.IDesignerLoaderHost2))]
System.Windows.Forms.Design (5)
System\ComponentModel\Design\DesignerHost.cs (4)
27private static readonly Type[] s_defaultServices = [typeof(IDesignerHost), typeof(IContainer), typeof(IComponentChangeService), typeof(IDesignerLoaderHost2)]; 1179bool IDesignerLoaderHost2.IgnoreErrorsDuringReload 1185if (!value || ((IDesignerLoaderHost2)this).CanReloadWithErrors) 1192bool IDesignerLoaderHost2.CanReloadWithErrors { get; set; }
System\ComponentModel\Design\Serialization\BasicDesignerLoader.cs (1)
635if (!successful && !(TryGetService(out IDesignerLoaderHost2? lh2) && lh2.IgnoreErrorsDuringReload))