4 implementations of GetValueSerializerFor
PresentationFramework (2)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
1205public ValueSerializer GetValueSerializerFor(Type type)
System\Windows\Markup\Primitives\MarkupWriter.cs (1)
1471public ValueSerializer GetValueSerializerFor(Type type)
System.Xaml (1)
System\Xaml\XamlObjectReader.cs (1)
2846public ValueSerializer GetValueSerializerFor(Type type)
System.Xaml.Tests (1)
System\Windows\Markup\ValueSerializerTests.cs (1)
442public ValueSerializer? GetValueSerializerFor(Type type) => SerializerResult;
8 references to GetValueSerializerFor
PresentationFramework (7)
System\Windows\Input\Command\CommandValueSerializer.cs (3)
22if (context == null || context.GetValueSerializerFor(typeof(Type)) == null) 84typeSerializer = context.GetValueSerializerFor(typeof(Type)); 141ValueSerializer typeSerializer = context.GetValueSerializerFor(typeof(Type));
System\Windows\Markup\Primitives\ElementMarkupObject.cs (2)
942ValueSerializer typeSerializer = context.GetValueSerializerFor(typeof(Type)); 1208return _baseContext.GetValueSerializerFor(type);
System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (1)
319ValueSerializer typeSerializer = _context.GetValueSerializerFor(typeof(Type));
System\Windows\SystemKeyConverter.cs (1)
147ValueSerializer typeSerializer = valueSerializerContext.GetValueSerializerFor(typeof(Type));
System.Xaml (1)
System\Windows\Markup\ValueSerializer.cs (1)
201ValueSerializer result = context.GetValueSerializerFor(type);