user1988044
user1988044

Reputation: 43

How do you detect the windows phone 7/8 device brand version programmatically?

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

Answers (2)

JustinAngel
JustinAngel

Reputation: 16092

Use Mango's DeviceStatus class to get information about the device.

MessageBox.Show(DeviceStatus.DeviceManufacturer + " " + DeviceStatus.DeviceName);

Upvotes: 1

Robert Harvey
Robert Harvey

Reputation: 180777

From the DeviceExtendedProperties class, the DeviceManufacturer and DeviceName properties.

Upvotes: 1

Related Questions