9 references to GetSerializerFor
PresentationFramework (1)
System\Windows\Markup\Primitives\MarkupWriter.cs (1)
1468return ValueSerializer.GetSerializerFor(descriptor);
System.Xaml (2)
System\Windows\Markup\ValueSerializer.cs (1)
230return GetSerializerFor(descriptor);
System\Xaml\XamlObjectReader.cs (1)
2843return ValueSerializer.GetSerializerFor(propertyDescriptor);
System.Xaml.Tests (6)
System\Windows\Markup\ValueSerializerTests.cs (6)
259Assert.IsType<DateTimeValueSerializer>(ValueSerializer.GetSerializerFor(descriptor)); 267Assert.IsType<CustomValueSerializer>(ValueSerializer.GetSerializerFor(descriptor)); 275Assert.NotNull(ValueSerializer.GetSerializerFor(descriptor)); 287Assert.Null(ValueSerializer.GetSerializerFor(descriptor)); 294Assert.Throws<ArgumentNullException>("descriptor", () => ValueSerializer.GetSerializerFor((PropertyDescriptor)null!)); 302Assert.Throws<InvalidCastException>(() => ValueSerializer.GetSerializerFor(descriptor));