Implemented interface member:
method
GetProperties
System.ComponentModel.ICustomTypeDescriptor.GetProperties(System.Attribute[])
3 overrides of GetProperties
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\AssociatedMetadataTypeTypeDescriptor.cs (1)
34public override PropertyDescriptorCollection GetProperties(Attribute[]? attributes)
System.ComponentModel.TypeConverter (1)
MS\Internal\Xml\Linq\ComponentModel\XComponentModel.cs (1)
39public override PropertyDescriptorCollection GetProperties(Attribute[]? attributes)
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\ToolStripCustomTypeDescriptor.cs (1)
72public override PropertyDescriptorCollection GetProperties(Attribute[]? attributes)
7 references to GetProperties
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\AssociatedMetadataTypeTypeDescriptor.cs (1)
36return GetPropertiesWithMetadata(base.GetProperties(attributes));
System.ComponentModel.TypeConverter (1)
MS\Internal\Xml\Linq\ComponentModel\XComponentModel.cs (1)
58foreach (PropertyDescriptor property in base.GetProperties(attributes))
System.Windows.Forms.Design.Tests (5)
System\Windows\Forms\Design\ToolStripCustomTypeDescriptorTests.cs (5)
46PropertyDescriptorCollection properties1 = _descriptor.GetProperties(attributes); 47PropertyDescriptorCollection properties2 = _descriptor.GetProperties(attributes); 61_descriptor.GetProperties(attributes).Cast<PropertyDescriptor>().Should().NotContain(p => p.Name == "Items"); 75_descriptor.GetProperties(attributes); 76_descriptor.GetProperties(attributes).Cast<PropertyDescriptor>().Should().NotContain(p => p.Name == "Items");