15 implementations of GetComponentName
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
66public virtual string? GetComponentName() => _parent?.GetComponentName();
System\ComponentModel\TypeDescriptor.cs (4)
2817string? ICustomTypeDescriptor.GetComponentName() => null; 3114string? ICustomTypeDescriptor.GetComponentName() 3480string? ICustomTypeDescriptor.GetComponentName() 3848string? ICustomTypeDescriptor.GetComponentName()
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
315string? ICustomTypeDescriptor.GetComponentName()
System\Data\Common\DbConnectionStringBuilder.cs (1)
601string? ICustomTypeDescriptor.GetComponentName()
System\Data\Common\DbDataRecord.cs (1)
77string? ICustomTypeDescriptor.GetComponentName() => null;
System\Data\DataRowView.cs (1)
234string? ICustomTypeDescriptor.GetComponentName() => null;
System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
46string? ICustomTypeDescriptor.GetComponentName() => null;
System.Windows.Forms (3)
System\Windows\Forms\ActiveX\AxHost.cs (1)
2452string? ICustomTypeDescriptor.GetComponentName()
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.ComTypeDescriptor.cs (1)
31string? ICustomTypeDescriptor.GetComponentName()
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.NullTypeDescriptor.cs (1)
20string? ICustomTypeDescriptor.GetComponentName() => string.Empty;
System.Windows.Forms.Design (2)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1250string? ICustomTypeDescriptor.GetComponentName() => null;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1240string? ICustomTypeDescriptor.GetComponentName() => TypeDescriptor.GetComponentName(DataGridViewColumn);
7 references to GetComponentName
System.ComponentModel.TypeConverter (7)
System\ComponentModel\CustomTypeDescriptor.cs (1)
66public virtual string? GetComponentName() => _parent?.GetComponentName();
System\ComponentModel\TypeDescriptionProvider.cs (1)
171return GetTypeDescriptor(component)?.GetComponentName();
System\ComponentModel\TypeDescriptor.cs (5)
836return GetDescriptor(component, noCustomTypeDesc)!.GetComponentName(); 3116return _primary.GetComponentName() ?? _secondary.GetComponentName(); 3494return desc.GetComponentName(); 3864name = desc.GetComponentName();