Reputation: 525
Im trying to retrieve some device information programmatically so I found something I need using DeviceStatus (DeviceExtendedProperties same thing) and Environment classes.
Is it everything? I would like to get more info, for example memory("hard disk") total / empty space, or cpu frequency , screen dpi..etc..
In Settings > info on every wp7 device I get more information as software/hardware revision, hardware/software radio version, bootloader version and processor version as well.
Hope it's possible to get more stuff!
Upvotes: 1
Views: 412
Reputation: 3046
there is no other info available. For available free space you can use IsolatedStorageFile's properties (AvailableFreeSpace)
nothing else is accessible (apart from Device Extended Properties).
Upvotes: 1