2 implementations of ITypeDescriptorFilterService
System.Windows.Forms.Design (2)
System\ComponentModel\Design\TypeDescriptorFilterService.cs (1)
12internal sealed class TypeDescriptorFilterService : ITypeDescriptorFilterService
System\Windows\Forms\Design\ComponentDocumentDesigner.cs (1)
15ITypeDescriptorFilterService
17 references to ITypeDescriptorFilterService
netstandard (1)
netstandard.cs (1)
271[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.ITypeDescriptorFilterService))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
257[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.ComponentModel.Design.ITypeDescriptorFilterService))]
System.ComponentModel.TypeConverter (6)
System\ComponentModel\TypeDescriptor.cs (6)
1961ITypeDescriptorFilterService? componentFilter = null; 1966componentFilter = site.GetService(typeof(ITypeDescriptorFilterService)) as ITypeDescriptorFilterService; 3000private readonly ITypeDescriptorFilterService _filterService; 3003internal FilterCacheItem(ITypeDescriptorFilterService filterService, ICollection filteredMembers) 3009internal bool IsValid(ITypeDescriptorFilterService filterService)
System.Windows.Forms.Design (9)
System\ComponentModel\Design\DesignSurface.cs (2)
41ServiceContainer.AddService<ITypeDescriptorFilterService>(callback); 424if (serviceType == typeof(ITypeDescriptorFilterService))
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (1)
2177if (filterProp?.GetValue(manager) is ITypeDescriptorFilterService filterSvc)
System\ComponentModel\Design\TypeDescriptorFilterService.cs (3)
38bool ITypeDescriptorFilterService.FilterAttributes(IComponent component, IDictionary attributes) 57bool ITypeDescriptorFilterService.FilterEvents(IComponent component, IDictionary events) 76bool ITypeDescriptorFilterService.FilterProperties(IComponent component, IDictionary properties)
System\Windows\Forms\Design\ComponentDocumentDesigner.cs (3)
98bool ITypeDescriptorFilterService.FilterAttributes(IComponent component, IDictionary attributes) 103bool ITypeDescriptorFilterService.FilterEvents(IComponent component, IDictionary events) 108bool ITypeDescriptorFilterService.FilterProperties(IComponent component, IDictionary properties)