4 writes to EditorTypeName
System.ComponentModel.Primitives (4)
System\ComponentModel\EditorAttribute.cs (4)
22EditorTypeName = string.Empty; 34EditorTypeName = typeName; 46EditorTypeName = typeName; 58EditorTypeName = type.AssemblyQualifiedName!;
11 references to EditorTypeName
System.ComponentModel.Primitives (2)
System\ComponentModel\EditorAttribute.cs (2)
105&& other.EditorTypeName == EditorTypeName
System.ComponentModel.TypeConverter (3)
System\ComponentModel\PropertyDescriptor.cs (1)
318Type? type = GetTypeFromName(attr.EditorTypeName);
System\ComponentModel\ReflectTypeDescriptionProvider.ReflectedTypeData.cs (2)
330Type? editorType = GetTypeFromName(instanceAttr!.EditorTypeName); 356Type? editorType = GetTypeFromName(typeAttr.EditorTypeName);
System.Windows.Forms (2)
System\Windows\Forms\ComponentModel\COM2Interop\COM2PropertyDescriptor.cs (2)
532&& Type.GetType(attribute.EditorTypeName) is { } type) 544Debug.Fail($"Failed to create editor of type '{attribute.EditorTypeName}' from Attribute", ex.ToString());
System.Windows.Forms.Design.Tests (1)
EnsureEditorsTests.cs (1)
174Assert.Contains(attributes, editor => editor.EditorTypeName.StartsWith($"{expectedEditorType.FullName}, ", StringComparison.Ordinal));
System.Windows.Forms.Tests (3)
System\Windows\Forms\Design\DesignerAttributeTests.cs (3)
178var type = Type.GetType(attribute.EditorTypeName, false); 179_output.WriteLine($"{subject}: {attribute.EditorTypeName} --> {type?.Name}"); 181if (SkipList.Contains(attribute.EditorTypeName))