12 implementations of GetValueSerializerFor
PresentationFramework (2)
System\Windows\Markup\Primitives\ElementMarkupObject.cs (1)
1194
public ValueSerializer
GetValueSerializerFor
(Type type)
System\Windows\Markup\Primitives\MarkupWriter.cs (1)
1466
public ValueSerializer
GetValueSerializerFor
(Type type)
System.Xaml (1)
System\Xaml\XamlObjectReader.cs (1)
2863
public ValueSerializer
GetValueSerializerFor
(Type type)
System.Xaml.Tests (1)
System\Windows\Markup\ValueSerializerTests.cs (1)
441
public ValueSerializer?
GetValueSerializerFor
(Type type) => SerializerResult;
WindowsBase.Tests (8)
System\Windows\Converters\Int32RectValueSerializerTests.cs (1)
120
public ValueSerializer
GetValueSerializerFor
(Type type) => throw new NotImplementedException();
System\Windows\Converters\PointValueSerializerTests.cs (1)
120
public ValueSerializer
GetValueSerializerFor
(Type type) => throw new NotImplementedException();
System\Windows\Converters\RectValueSerializerTests.cs (1)
129
public ValueSerializer
GetValueSerializerFor
(Type type) => throw new NotImplementedException();
System\Windows\Converters\SizeValueSerializerTests.cs (1)
129
public ValueSerializer
GetValueSerializerFor
(Type type) => throw new NotImplementedException();
System\Windows\Converters\VectorValueSerializerTests.cs (1)
120
public ValueSerializer
GetValueSerializerFor
(Type type) => throw new NotImplementedException();
System\Windows\Input\KeyValueSerializerTests.cs (1)
137
public ValueSerializer
GetValueSerializerFor
(Type type) => throw new NotImplementedException();
System\Windows\Input\ModifierKeysValueSerializerTests.cs (1)
132
public ValueSerializer
GetValueSerializerFor
(Type type) => throw new NotImplementedException();
System\Windows\Media\Converters\MatrixValueSerializerTests.cs (1)
120
public ValueSerializer
GetValueSerializerFor
(Type type) => throw new NotImplementedException();
8 references to GetValueSerializerFor
PresentationFramework (7)
System\Windows\Input\Command\CommandValueSerializer.cs (3)
18
if (context == null || context.
GetValueSerializerFor
(typeof(Type)) == null)
80
typeSerializer = context.
GetValueSerializerFor
(typeof(Type));
137
ValueSerializer typeSerializer = context.
GetValueSerializerFor
(typeof(Type));
System\Windows\Markup\Primitives\ElementMarkupObject.cs (2)
931
ValueSerializer typeSerializer = context.
GetValueSerializerFor
(typeof(Type));
1197
return _baseContext.
GetValueSerializerFor
(type);
System\Windows\Markup\Primitives\ExtensionSimplifierMarkupObject.cs (1)
313
ValueSerializer typeSerializer = _context.
GetValueSerializerFor
(typeof(Type));
System\Windows\SystemKeyConverter.cs (1)
145
ValueSerializer typeSerializer = valueSerializerContext.
GetValueSerializerFor
(typeof(Type));
System.Xaml (1)
System\Windows\Markup\ValueSerializer.cs (1)
199
ValueSerializer result = context.
GetValueSerializerFor
(type);