fran
fran

Reputation: 525

Device info wp7

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

Answers (1)

Hermit Dave
Hermit Dave

Reputation: 3046

there is no other info available. For available free space you can use IsolatedStorageFile's properties (AvailableFreeSpace)

http://msdn.microsoft.com/en-us/library/system.io.isolatedstorage.isolatedstoragefile.availablefreespace(v=vs.95).aspx

nothing else is accessible (apart from Device Extended Properties).

Upvotes: 1

Related Questions