System.Xaml.AmbientProvider.GetFirstAmbientValue C# (CSharp) 메소드

GetFirstAmbientValue() 공개 메소드

public GetFirstAmbientValue ( IEnumerable ceilingTypes ) : System.Xaml.AmbientPropertyValue
ceilingTypes IEnumerable
리턴 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