3 instantiations of AmbientPropertyValue
System.Xaml (2)
System\Xaml\Context\ObjectWriterContext.cs (2)
348AmbientPropertyValue apValue = new AmbientPropertyValue(null, inst); 400AmbientPropertyValue 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)
206AmbientPropertyValue firstAmbientValue = ambientProvider.GetFirstAmbientValue(ceilingTypes, styleTargetType, 248AmbientPropertyValue ambientValue =
System\Windows\Markup\RoutedEventConverter.cs (1)
94AmbientPropertyValue firstAmbientValue = iapp.GetFirstAmbientValue(ceilingTypes, styleTargetType);
System\Windows\StaticResourceExtension.cs (4)
228IEnumerable<AmbientPropertyValue> ambientValues = null; 240List<AmbientPropertyValue> ambientList; 241ambientList = ambientValues as List<AmbientPropertyValue>; 246AmbientPropertyValue ambientValue = ambientList[i];
System.Xaml (17)
System\Xaml\Context\ObjectWriterContext.cs (11)
174internal AmbientPropertyValue ServiceProvider_GetFirstAmbientValue(IEnumerable<XamlType> ceilingTypes, XamlMember[] properties) 176List<AmbientPropertyValue> valueList = FindAmbientValues(ceilingTypes, searchLiveStackOnly: false, types: null, properties, true); 186internal IEnumerable<AmbientPropertyValue> ServiceProvider_GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, XamlMember[] properties) 188List<AmbientPropertyValue> valueList = FindAmbientValues(ceilingTypes, searchLiveStackOnly: false, types: null, properties, stopAfterFirst: false); 198internal IEnumerable<AmbientPropertyValue> ServiceProvider_GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, bool searchLiveStackOnly, IEnumerable<XamlType> types, XamlMember[] properties) 200List<AmbientPropertyValue> valueList = FindAmbientValues(ceilingTypes, searchLiveStackOnly, types, properties, false); 309private List<AmbientPropertyValue> FindAmbientValues(IEnumerable<XamlType> ceilingTypesEnumerable, 325List<AmbientPropertyValue> retList = new List<AmbientPropertyValue>(); 348AmbientPropertyValue apValue = new AmbientPropertyValue(null, inst); 400AmbientPropertyValue apValue = new AmbientPropertyValue(prop, value);
System\Xaml\Context\ServiceProviderContext.cs (3)
129AmbientPropertyValue IAmbientProvider.GetFirstAmbientValue( 163IEnumerable<AmbientPropertyValue> IAmbientProvider.GetAllAmbientValues( 197IEnumerable<AmbientPropertyValue> IAmbientProvider.GetAllAmbientValues(
System\Xaml\IAmbientProvider.cs (3)
11AmbientPropertyValue GetFirstAmbientValue(IEnumerable<XamlType> ceilingTypes, 15IEnumerable<AmbientPropertyValue> GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes, 20IEnumerable<AmbientPropertyValue> GetAllAmbientValues(IEnumerable<XamlType> ceilingTypes,
System.Xaml.Tests (1)
System\Xaml\AmbientPropertyValueTests.cs (1)
23var ambientValue = new AmbientPropertyValue(property, value);