17 implementations of GetClassName
System.ComponentModel.TypeConverter (5)
System\ComponentModel\CustomTypeDescriptor.cs (1)
60public virtual string? GetClassName() => _parent?.GetClassName();
System\ComponentModel\TypeDescriptor.cs (4)
2817string ICustomTypeDescriptor.GetClassName() => _handler.GetClassName(_instance); 3101string ICustomTypeDescriptor.GetClassName() 3456string? ICustomTypeDescriptor.GetClassName() 3821public string? GetClassName()
System.Data.Common (5)
System\Data\Common\DataRecordInternal.cs (1)
310string? ICustomTypeDescriptor.GetClassName()
System\Data\Common\DbConnectionStringBuilder.cs (1)
589string? ICustomTypeDescriptor.GetClassName()
System\Data\Common\DbDataRecord.cs (1)
75string? ICustomTypeDescriptor.GetClassName() => null;
System\Data\DataRowView.cs (1)
233string? ICustomTypeDescriptor.GetClassName() => null;
System\Data\DataViewManagerListItemTypeDescriptor.cs (1)
40string? ICustomTypeDescriptor.GetClassName() => null;
System.Windows.Forms (3)
System\Windows\Forms\ActiveX\AxHost.cs (1)
2445string? ICustomTypeDescriptor.GetClassName()
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.ComTypeDescriptor.cs (1)
29string? ICustomTypeDescriptor.GetClassName() => GetClassName(_instance);
System\Windows\Forms\ComponentModel\COM2Interop\ComNativeDescriptor.NullTypeDescriptor.cs (1)
19string? ICustomTypeDescriptor.GetClassName() => string.Empty;
System.Windows.Forms.Design (2)
System\ComponentModel\Design\CollectionEditor.CollectionEditorCollectionForm.cs (1)
1237string ICustomTypeDescriptor.GetClassName() => PropertyType.Name;
System\Windows\Forms\Design\DataGridViewColumnCollectionDialog.cs (1)
1244string? ICustomTypeDescriptor.GetClassName() => TypeDescriptor.GetClassName(DataGridViewColumn);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ComponentModel\Com2Interop\COM2FontConverterTests.cs (1)
116public string? GetClassName() => throw new NotImplementedException();
System\Windows\Forms\ListBindingHelperTests.cs (1)
792public string GetClassName()
10 references to GetClassName
System.ComponentModel.TypeConverter (6)
System\ComponentModel\CustomTypeDescriptor.cs (1)
60public virtual string? GetClassName() => _parent?.GetClassName();
System\ComponentModel\TypeDescriptor.cs (5)
802return GetDescriptor(component, noCustomTypeDesc)!.GetClassName(); 3103string? className = _primary.GetClassName() ?? _secondary.GetClassName(); 3470string? name = desc.GetClassName() ?? _instance.GetType().FullName; 3837name = desc.GetClassName() ?? _objectType.FullName;
System.Windows.Forms.Tests (4)
System\Windows\Forms\AxHostTests.cs (4)
2375Assert.Null(customTypeDescriptor.GetClassName()); 2379Assert.Null(customTypeDescriptor.GetClassName()); 2396Assert.Null(customTypeDescriptor.GetClassName()); 2403Assert.Null(customTypeDescriptor.GetClassName());