15 implementations of GetAttributes
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
44public virtual AttributeCollection GetAttributes()
System\ComponentModel\TypeDescriptor.cs (4)
2813AttributeCollection ICustomTypeDescriptor.GetAttributes() => _handler.GetAttributes(_instance); 3092AttributeCollection ICustomTypeDescriptor.GetAttributes() 3435AttributeCollection ICustomTypeDescriptor.GetAttributes() 3796public AttributeCollection GetAttributes()
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
305AttributeCollection ICustomTypeDescriptor.GetAttributes()
System\Data\Common\DbConnectionStringBuilder.cs (1)
610AttributeCollection 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)
2426AttributeCollection 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)
1240AttributeCollection ICustomTypeDescriptor.GetAttributes() => TypeDescriptor.GetAttributes(PropertyType);
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1236AttributeCollection ICustomTypeDescriptor.GetAttributes() => TypeDescriptor.GetAttributes(DataGridViewColumn);
10 references to GetAttributes
System.ComponentModel.TypeConverter (8)
System\ComponentModel\CustomTypeDescriptor.cs (1)
48return _parent.GetAttributes();
System\ComponentModel\TypeDescriptor.cs (7)
739ICollection results = typeDesc.GetAttributes(); 758ICollection extResults = extDesc.GetAttributes(); 776ICollection extResults = extDesc.GetAttributes(); 3094AttributeCollection attrs = _primary.GetAttributes() ?? _secondary.GetAttributes(); 3449AttributeCollection attrs = desc.GetAttributes(); 3812attrs = desc.GetAttributes();
System.Windows.Forms.Design (2)
System\ComponentModel\Design\Serialization\CodeDomSerializerBase.cs (2)
286return targetAwareDescriptor.GetAttributes(); 312return targetAwareDescriptor.GetAttributes();