1 write to _sourceType
PresentationFramework (1)
src\Framework\MS\Internal\Data\DefaultValueConverter.cs (1)
45
_sourceType
= sourceType;
7 references to _sourceType
PresentationFramework (7)
src\Framework\MS\Internal\Data\DefaultValueConverter.cs (7)
412
return ConvertFrom(o,
_sourceType
, parameter as DependencyObject, culture);
447
return ConvertTo(o,
_sourceType
, parameter as DependencyObject, culture);
586
if (o == null && !
_sourceType
.IsValueType)
589
if (o != null &&
_sourceType
.IsAssignableFrom(o.GetType()))
594
if (
_sourceType
== typeof(String))
598
EnsureConverter(
_sourceType
);
599
return ConvertFrom(o,
_sourceType
, parameter as DependencyObject, culture);