2 instantiations of AmbientPropertyValue
System.Xaml (2)
System\Xaml\Context\ObjectWriterContext.cs (2)
340
AmbientPropertyValue apValue = new
AmbientPropertyValue
(null, inst);
394
AmbientPropertyValue apValue = new
AmbientPropertyValue
(prop, value);
24 references to AmbientPropertyValue
PresentationFramework (7)
System\Windows\Markup\DependencyPropertyConverter.cs (2)
215
AmbientPropertyValue
firstAmbientValue = ambientProvider.GetFirstAmbientValue(ceilingTypes, styleTargetType,
257
AmbientPropertyValue
ambientValue =
System\Windows\Markup\RoutedEventConverter.cs (1)
95
AmbientPropertyValue
firstAmbientValue = iapp.GetFirstAmbientValue(ceilingTypes, styleTargetType);
System\Windows\StaticResourceExtension.cs (4)
236
IEnumerable<
AmbientPropertyValue
> ambientValues = null;
248
List<
AmbientPropertyValue
> ambientList;
249
ambientList = ambientValues as List<
AmbientPropertyValue
>;
254
AmbientPropertyValue
ambientValue = ambientList[i];
System.Xaml (17)
System\Xaml\Context\ObjectWriterContext.cs (11)
172
internal
AmbientPropertyValue
ServiceProvider_GetFirstAmbientValue(IEnumerable<XamlType> ceilingTypes, XamlMember[] properties)
174
List<
AmbientPropertyValue
> valueList = FindAmbientValues(ceilingTypes, /*searchLiveStackOnly*/false, /*types*/null, properties, true);
184
internal IEnumerable<
AmbientPropertyValue
> ServiceProvider_GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, XamlMember[] properties)
186
List<
AmbientPropertyValue
> valueList = FindAmbientValues(ceilingTypes, /*searchLiveStackOnly*/false, /*types*/null, properties, /*stopAfterFirst*/ false);
196
internal IEnumerable<
AmbientPropertyValue
> ServiceProvider_GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, bool searchLiveStackOnly, IEnumerable<XamlType> types, XamlMember[] properties)
198
List<
AmbientPropertyValue
> valueList = FindAmbientValues(ceilingTypes, searchLiveStackOnly, types, properties, false);
301
private List<
AmbientPropertyValue
> FindAmbientValues(IEnumerable<XamlType> ceilingTypesEnumerable,
317
List<
AmbientPropertyValue
> retList = new List<
AmbientPropertyValue
>();
340
AmbientPropertyValue
apValue = new AmbientPropertyValue(null, inst);
394
AmbientPropertyValue
apValue = new AmbientPropertyValue(prop, value);
System\Xaml\Context\ServiceProviderContext.cs (3)
131
AmbientPropertyValue
IAmbientProvider.GetFirstAmbientValue(
165
IEnumerable<
AmbientPropertyValue
> IAmbientProvider.GetAllAmbientValues(
199
IEnumerable<
AmbientPropertyValue
> IAmbientProvider.GetAllAmbientValues(
System\Xaml\IAmbientProvider.cs (3)
13
AmbientPropertyValue
GetFirstAmbientValue(IEnumerable<XamlType> ceilingTypes,
17
IEnumerable<
AmbientPropertyValue
> GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes,
22
IEnumerable<
AmbientPropertyValue
> GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes,