17 implementations of GetComponentName
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
66public virtual string? GetComponentName() => _parent?.GetComponentName();
System\ComponentModel\TypeDescriptor.cs (4)
2819string? ICustomTypeDescriptor.GetComponentName() => null; 3112string? ICustomTypeDescriptor.GetComponentName() 3478string? ICustomTypeDescriptor.GetComponentName() 3846string? ICustomTypeDescriptor.GetComponentName()
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
315string? ICustomTypeDescriptor.GetComponentName()
System\Data\Common\DbConnectionStringBuilder.cs (1)
598string? 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)
2454string? 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)
1242string? ICustomTypeDescriptor.GetComponentName() => null;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1246string? ICustomTypeDescriptor.GetComponentName() => TypeDescriptor.GetComponentName(DataGridViewColumn);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComponentModel\Com2Interop\COM2FontConverterTests.cs (1)
118public string? GetComponentName() => throw new NotImplementedException();
System\Windows\Forms\ListBindingHelperTests.cs (1)
797public string GetComponentName()
11 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)
827return GetDescriptor(component, noCustomTypeDesc)!.GetComponentName(); 3114return _primary.GetComponentName() ?? _secondary.GetComponentName(); 3492return desc.GetComponentName(); 3862name = desc.GetComponentName();
System.Windows.Forms.Tests (4)
System\Windows\Forms\AxHostTests.cs (4)
2415Assert.Null(customTypeDescriptor.GetComponentName()); 2419Assert.Null(customTypeDescriptor.GetComponentName()); 2436Assert.Null(customTypeDescriptor.GetComponentName()); 2443Assert.Null(customTypeDescriptor.GetComponentName());