3 implementations of GetValueSerializerFor
PresentationFramework (2)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
1193public ValueSerializer GetValueSerializerFor(Type type)
System\Windows\Markup\Primitives\MarkupWriter.cs (1)
1466public ValueSerializer GetValueSerializerFor(Type type)
System.Xaml (1)
System\Xaml\XamlObjectReader.cs (1)
2862public ValueSerializer GetValueSerializerFor(Type type)
8 references to GetValueSerializerFor
PresentationFramework (7)
System\Windows\Input\Command\CommandValueSerializer.cs (3)
17if (context == null || context.GetValueSerializerFor(typeof(Type)) == null) 79typeSerializer = context.GetValueSerializerFor(typeof(Type)); 136ValueSerializer typeSerializer = context.GetValueSerializerFor(typeof(Type));
System\Windows\Markup\Primitives\ElementMarkupObject.cs (2)
930ValueSerializer typeSerializer = context.GetValueSerializerFor(typeof(Type)); 1196return _baseContext.GetValueSerializerFor(type);
System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (1)
312ValueSerializer typeSerializer = _context.GetValueSerializerFor(typeof(Type));
System\Windows\SystemKeyConverter.cs (1)
144ValueSerializer typeSerializer = valueSerializerContext.GetValueSerializerFor(typeof(Type));
System.Xaml (1)
System\Windows\Markup\ValueSerializer.cs (1)
198ValueSerializer result = context.GetValueSerializerFor(type);