3 instantiations of AmbientPropertyValue
System.Xaml (2)
System\Xaml\Context\ObjectWriterContext.cs (2)
346AmbientPropertyValue apValue = new AmbientPropertyValue(null, inst); 398AmbientPropertyValue apValue = new AmbientPropertyValue(prop, value);
System.Xaml.Tests (1)
System\Xaml\AmbientPropertyValueTests.cs (1)
23var ambientValue = new AmbientPropertyValue(property, value);
25 references to AmbientPropertyValue
PresentationFramework (7)
System\Windows\Markup\DependencyPropertyConverter.cs (2)
205AmbientPropertyValue firstAmbientValue = ambientProvider.GetFirstAmbientValue(ceilingTypes, styleTargetType, 247AmbientPropertyValue ambientValue =
System\Windows\Markup\RoutedEventConverter.cs (1)
93AmbientPropertyValue firstAmbientValue = iapp.GetFirstAmbientValue(ceilingTypes, styleTargetType);
System\Windows\StaticResourceExtension.cs (4)
227IEnumerable<AmbientPropertyValue> ambientValues = null; 239List<AmbientPropertyValue> ambientList; 240ambientList = ambientValues as List<AmbientPropertyValue>; 245AmbientPropertyValue ambientValue = ambientList[i];
System.Xaml (17)
System\Xaml\Context\ObjectWriterContext.cs (11)
172internal AmbientPropertyValue ServiceProvider_GetFirstAmbientValue(IEnumerable<XamlType> ceilingTypes, XamlMember[] properties) 174List<AmbientPropertyValue> valueList = FindAmbientValues(ceilingTypes, searchLiveStackOnly: false, types: null, properties, true); 184internal IEnumerable<AmbientPropertyValue> ServiceProvider_GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, XamlMember[] properties) 186List<AmbientPropertyValue> valueList = FindAmbientValues(ceilingTypes, searchLiveStackOnly: false, types: null, properties, stopAfterFirst: false); 196internal IEnumerable<AmbientPropertyValue> ServiceProvider_GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, bool searchLiveStackOnly, IEnumerable<XamlType> types, XamlMember[] properties) 198List<AmbientPropertyValue> valueList = FindAmbientValues(ceilingTypes, searchLiveStackOnly, types, properties, false); 307private List<AmbientPropertyValue> FindAmbientValues(IEnumerable<XamlType> ceilingTypesEnumerable, 323List<AmbientPropertyValue> retList = new List<AmbientPropertyValue>(); 346AmbientPropertyValue apValue = new AmbientPropertyValue(null, inst); 398AmbientPropertyValue apValue = new AmbientPropertyValue(prop, value);
System\Xaml\Context\ServiceProviderContext.cs (3)
128AmbientPropertyValue IAmbientProvider.GetFirstAmbientValue( 162IEnumerable<AmbientPropertyValue> IAmbientProvider.GetAllAmbientValues( 196IEnumerable<AmbientPropertyValue> IAmbientProvider.GetAllAmbientValues(
System\Xaml\IAmbientProvider.cs (3)
10AmbientPropertyValue GetFirstAmbientValue(IEnumerable<XamlType> ceilingTypes, 14IEnumerable<AmbientPropertyValue> GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, 19IEnumerable<AmbientPropertyValue> GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes,
System.Xaml.Tests (1)
System\Xaml\AmbientPropertyValueTests.cs (1)
23var ambientValue = new AmbientPropertyValue(property, value);