12 implementations of GetValueSerializerFor
PresentationFramework (2)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
1186public ValueSerializer GetValueSerializerFor(PropertyDescriptor descriptor)
System\Windows\Markup\Primitives\MarkupWriter.cs (1)
1458public ValueSerializer GetValueSerializerFor(PropertyDescriptor descriptor)
System.Xaml (1)
System\Xaml\XamlObjectReader.cs (1)
2858public ValueSerializer GetValueSerializerFor(PropertyDescriptor propertyDescriptor)
System.Xaml.Tests (1)
System\Windows\Markup\ValueSerializerTests.cs (1)
443public ValueSerializer? GetValueSerializerFor(PropertyDescriptor type) => SerializerResult;
WindowsBase.Tests (8)
System\Windows\Converters\Int32RectValueSerializerTests.cs (1)
118public ValueSerializer GetValueSerializerFor(PropertyDescriptor descriptor) => throw new NotImplementedException();
System\Windows\Converters\PointValueSerializerTests.cs (1)
118public ValueSerializer GetValueSerializerFor(PropertyDescriptor descriptor) => throw new NotImplementedException();
System\Windows\Converters\RectValueSerializerTests.cs (1)
127public ValueSerializer GetValueSerializerFor(PropertyDescriptor descriptor) => throw new NotImplementedException();
System\Windows\Converters\SizeValueSerializerTests.cs (1)
127public ValueSerializer GetValueSerializerFor(PropertyDescriptor descriptor) => throw new NotImplementedException();
System\Windows\Converters\VectorValueSerializerTests.cs (1)
118public ValueSerializer GetValueSerializerFor(PropertyDescriptor descriptor) => throw new NotImplementedException();
System\Windows\Input\KeyValueSerializerTests.cs (1)
135public ValueSerializer GetValueSerializerFor(PropertyDescriptor descriptor) => throw new NotImplementedException();
System\Windows\Input\ModifierKeysValueSerializerTests.cs (1)
130public ValueSerializer GetValueSerializerFor(PropertyDescriptor descriptor) => throw new NotImplementedException();
System\Windows\Media\Converters\MatrixValueSerializerTests.cs (1)
118public ValueSerializer GetValueSerializerFor(PropertyDescriptor descriptor) => throw new NotImplementedException();
2 references to GetValueSerializerFor
PresentationFramework (1)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
1189return _baseContext.GetValueSerializerFor(descriptor);
System.Xaml (1)
System\Windows\Markup\ValueSerializer.cs (1)
221ValueSerializer result = context.GetValueSerializerFor(descriptor);