1 write to ConverterType
System.Xaml (1)
System\Xaml\Schema\XamlValueConverter.cs (1)
36ConverterType = converterType;
19 references to ConverterType
PresentationFramework (1)
System\Windows\Markup\SetterTriggerConditionValueConverter.cs (1)
137if (typeConverter.ConverterType == null)
System.Xaml (16)
System\Xaml\InfosetObjects\XamlObjectWriter.cs (1)
1375if (converter is not null && converter.ConverterType is not null && converter != BuiltInValueConverter.String)
System\Xaml\Runtime\DynamicMethodRuntime.cs (1)
144Type clrType = ts.ConverterType;
System\Xaml\Schema\XamlValueConverter.cs (14)
63_isPublic = (ConverterType is null || ConverterType.IsVisible) ? ThreeValuedBool.True : ThreeValuedBool.False; 72if (ConverterType == typeof(EnumConverter) && 77else if (ConverterType is not null) 79if (!typeof(TConverterBase).IsAssignableFrom(ConverterType)) 82ConverterType, typeof(TConverterBase))); 85return (TConverterBase)Activator.CreateInstance(ConverterType, null); 93if (ConverterType is not null) 97return $"{ConverterType.Name}({TargetType.Name})"; 100return ConverterType.Name; 119if (ConverterType is not null) 121result ^= ConverterType.GetHashCode(); 146return converter1.ConverterType == converter2.ConverterType &&
System.Xaml.Tests (2)
System\Xaml\Schema\XamlValueConverterTests.cs (2)
26Assert.Equal(converterType, converter.ConverterType); 43Assert.Equal(converterType, converter.ConverterType);