How to detect is a camera is available using isTypePresent in a Windows 10 Universal Application
When developing a Universal Application for Windows 10 you are encouraged to detect device specific hardware using IsTypePresent . (Microsoft refer to this feature as ' Light up '). An example from the documentation that checks for a device's back button is: if(Windows.Foundation.Metadata.ApiInformation.IsTypePresent("Windows.Phone.UI.Input.HardwareButtons")) Windows.Phone.UI.Input.HardwareButtons.BackPressed += HardwareButtons_BackPressed; It is clear here that the string "Windows.Phone.UI.Input.HardwareButtons" is passed as an argument to the IsTypePresent() method. I would like to know if