17 implementations of GetAttributes
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
44public virtual AttributeCollection GetAttributes()
System\ComponentModel\TypeDescriptor.cs (4)
2815AttributeCollection ICustomTypeDescriptor.GetAttributes() => _handler.GetAttributes(_instance); 3090AttributeCollection ICustomTypeDescriptor.GetAttributes() 3433AttributeCollection ICustomTypeDescriptor.GetAttributes() 3794public AttributeCollection GetAttributes()
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
305AttributeCollection ICustomTypeDescriptor.GetAttributes()
System\Data\Common\DbConnectionStringBuilder.cs (1)
607AttributeCollection ICustomTypeDescriptor.GetAttributes()
System\Data\Common\DbDataRecord.cs (1)
73AttributeCollection ICustomTypeDescriptor.GetAttributes() => new AttributeCollection(null);
System\Data\DataRowView.cs (1)
232AttributeCollection ICustomTypeDescriptor.GetAttributes() => new AttributeCollection(null);
System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
34AttributeCollection ICustomTypeDescriptor.GetAttributes() => new AttributeCollection(null);
System.Windows.Forms (3)
System\Windows\Forms\ActiveX\AxHost.cs (1)
2429AttributeCollection ICustomTypeDescriptor.GetAttributes()
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.ComTypeDescriptor.cs (1)
27AttributeCollection ICustomTypeDescriptor.GetAttributes() => GetAttributes(_instance);
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.NullTypeDescriptor.cs (1)
18AttributeCollection ICustomTypeDescriptor.GetAttributes() => new(s_staticAttributes);
System.Windows.Forms.Design (2)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1232AttributeCollection ICustomTypeDescriptor.GetAttributes() => TypeDescriptor.GetAttributes(PropertyType);
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1242AttributeCollection ICustomTypeDescriptor.GetAttributes() => TypeDescriptor.GetAttributes(DataGridViewColumn);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComponentModel\Com2Interop\COM2FontConverterTests.cs (1)
114public AttributeCollection GetAttributes() => throw new NotImplementedException();
System\Windows\Forms\ListBindingHelperTests.cs (1)
787public AttributeCollection GetAttributes()
15 references to GetAttributes
System.ComponentModel.TypeConverter (8)
System\ComponentModel\CustomTypeDescriptor.cs (1)
48return _parent.GetAttributes();
System\ComponentModel\TypeDescriptor.cs (7)
730ICollection results = typeDesc.GetAttributes(); 749ICollection extResults = extDesc.GetAttributes(); 767ICollection extResults = extDesc.GetAttributes(); 3092AttributeCollection attrs = _primary.GetAttributes() ?? _secondary.GetAttributes(); 3447AttributeCollection attrs = desc.GetAttributes(); 3810attrs = desc.GetAttributes();
System.Windows.Forms.Design (2)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (2)
286return targetAwareDescriptor.GetAttributes(); 312return targetAwareDescriptor.GetAttributes();
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\DesignerHostTests.cs (1)
652.Setup(d => d.GetAttributes())
System.Windows.Forms.Tests (4)
System\Windows\Forms\AxHostTests.cs (4)
2331AttributeCollection attributes = customTypeDescriptor.GetAttributes(); 2336attributes = customTypeDescriptor.GetAttributes(); 2354AttributeCollection attributes = customTypeDescriptor.GetAttributes(); 2362attributes = customTypeDescriptor.GetAttributes();