In Universal Windows Apps with the following code snippet
var devices = await Windows.Devices.Enumeration.DeviceInformation.FindAllAsync(Windows.Devices.Enumeration.DeviceClass.VideoCapture);
if (devices.Count < 1)
{
return;
}
string deviceID = devices[0].Id;
I can get the cameras that are connected to my device. If there is more than one cameras, is there a way to explicitly get the built in camera and not a USB (or bluetooth or anything) connected one?