5 overrides of GetProperties
System.Windows.Forms (2)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertiesTab.cs (1)
40public override PropertyDescriptorCollection? GetProperties(object component, Attribute[]? attributes)
System\Windows\Forms\Design\EventsTab.cs (1)
89public override PropertyDescriptorCollection GetProperties(object component, Attribute[]? attributes)
System.Windows.Forms.Tests (3)
System\Windows\Forms\Design\PropertyTabTests.cs (1)
192public override PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes)
System\Windows\Forms\PropertyGrid.PropertyTabCollectionTests.cs (1)
69public override PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes) => TypeDescriptor.GetProperties(component, attributes);
System\Windows\Forms\PropertyGridTests.cs (1)
2380public override PropertyDescriptorCollection GetProperties(object component, Attribute[] attributes) => throw new NotImplementedException();
2 references to GetProperties
System.Windows.Forms (2)
System\Windows\Forms\Design\PropertyTab.cs (2)
113=> GetProperties(component, attributes: null); 128Attribute[]? attributes) => GetProperties(component, attributes);