System.Xaml.AmbientProvider.GetFirstAmbientValue C# (CSharp) Method

GetFirstAmbientValue() public method

public GetFirstAmbientValue ( IEnumerable ceilingTypes ) : System.Xaml.AmbientPropertyValue
ceilingTypes IEnumerable
return System.Xaml.AmbientPropertyValue
		public AmbientPropertyValue GetFirstAmbientValue (IEnumerable<XamlType> ceilingTypes, params XamlMember [] properties)
		{
			foreach (var obj in GetAllAmbientValues (ceilingTypes, properties))
				return obj;
			return null;
		}
	}

Same methods

AmbientProvider::GetFirstAmbientValue ( ) : object