1 implementation of IDesignerSerializationService
System.Windows.Forms.Design (1)
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.cs (1)
29public abstract partial class CodeDomDesignerLoader : BasicDesignerLoader, INameCreationService, IDesignerSerializationService
20 references to IDesignerSerializationService
netstandard (1)
netstandard.cs (1)
286[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.Serialization.IDesignerSerializationService))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
272[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.Serialization.IDesignerSerializationService))]
System.Windows.Forms.Design (18)
System\ComponentModel\Design\Serialization\CodeDomDesignerLoader.cs (4)
100host.RemoveService<IDesignerSerializationService>(); 589LoaderHost.AddService<IDesignerSerializationService>(this); 958ICollection IDesignerSerializationService.Deserialize(object serializationData) 979object IDesignerSerializationService.Serialize(ICollection? objects)
System\Windows\Forms\Design\CommandSet.cs (5)
1398IDesignerSerializationService? ds = GetService<IDesignerSerializationService>(); 1443IDesignerSerializationService? ds = GetService<IDesignerSerializationService>(); 1860if (TryGetService(out IDesignerSerializationService? ds))
System\Windows\Forms\Design\ComponentTray.cs (3)
2904IDesignerSerializationService ds = (IDesignerSerializationService)GetService(typeof(IDesignerSerializationService));
System\Windows\Forms\Design\OleDragDropHandler.CfCodeToolboxItem.cs (1)
73if (!host.TryGetService(out IDesignerSerializationService? ds) || _serializationData is null)
System\Windows\Forms\Design\OleDragDropHandler.ComponentDataObject.cs (4)
41IDesignerSerializationService? ds = _serviceProvider.GetService<IDesignerSerializationService>(); 211IDesignerSerializationService ds = serviceProvider.GetService<IDesignerSerializationService>()!;
System\Windows\Forms\Design\OleDragDropHandler.cs (1)
98if (!TryGetService(out IDesignerSerializationService? ds))