12 overrides of TypeId
PresentationFramework (1)
System\Windows\Data\ValueConversionAttribute.cs (1)
91public override object TypeId
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\CustomValidationAttribute.cs (1)
108public override object TypeId => _typeId ??= new Tuple<string, Type>(Method, ValidatorType);
System.ComponentModel.Primitives (4)
System\ComponentModel\Design\Serialization\DesignerSerializerAttribute.cs (1)
65public override object TypeId
System\ComponentModel\DesignerAttribute.cs (1)
96public override object TypeId
System\ComponentModel\DesignerCategoryAttribute.cs (1)
67public override object TypeId => GetType().FullName + Category;
System\ComponentModel\EditorAttribute.cs (1)
79public override object TypeId
System.ComponentModel.TypeConverter (4)
System\ComponentModel\Design\Serialization\RootDesignerSerializerAttribute.cs (1)
76public override object TypeId
System\ComponentModel\LicenseProviderAttribute.cs (1)
74public override object TypeId
System\ComponentModel\ProvidePropertyAttribute.cs (1)
64public override object TypeId => GetType().FullName + PropertyName;
System\ComponentModel\ToolboxItemFilterAttribute.cs (1)
81public override object TypeId => _typeId ??= GetType().FullName + FilterString;
System.Xaml (2)
System\Windows\Markup\ContentWrapperAttribute.cs (1)
36public override object TypeId => this;
System\Windows\Markup\DependsOnAttribute.cs (1)
33public override object TypeId => this;
10 references to TypeId
System.ComponentModel.TypeConverter (7)
System\ComponentModel\AttributeCollection.cs (2)
80if (newArray[existingIdx].TypeId.Equals(newAttributes[idx].TypeId))
System\ComponentModel\MemberDescriptor.cs (1)
350object? typeId = list[i]?.TypeId;
System\ComponentModel\ReflectTypeDescriptionProvider.ReflectedTypeData.cs (1)
137if (addAttr && filter.Add(attr.TypeId))
System\ComponentModel\TypeDescriptor.cs (3)
1995filterTable[attr.TypeId] = attr; 2934if (newArray[existingIdx].TypeId.Equals(newAttrs[idx].TypeId))
System.Windows.Forms (1)
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\AttributeTypeSorter.cs (1)
33object? typeId = attribute.TypeId;
WindowsBase.Tests (2)
System\Windows\AttachedPropertyBrowsableWhenAttributePresentAttributeTests.cs (1)
16Assert.Equal(typeof(AttachedPropertyBrowsableWhenAttributePresentAttribute), attribute.TypeId);
System\Windows\Media\DisableDpiAwarenessAttributeTests.cs (1)
12Assert.Equal(typeof(DisableDpiAwarenessAttribute), attribute.TypeId);