Reputation: 43
I know how to get the OS version, but I'm looking for something that can tell me what the device is (brand, version, etc). Example: Nokia Lumia 920 Anything close to it will be helpful!
Upvotes: 2
Views: 913
Reputation: 16092
Use Mango's DeviceStatus class to get information about the device.
MessageBox.Show(DeviceStatus.DeviceManufacturer + " " + DeviceStatus.DeviceName);
Upvotes: 1
Reputation: 180777
From the DeviceExtendedProperties class, the DeviceManufacturer
and DeviceName
properties.
Upvotes: 1