Reputation: 27592
It seems that it is not possible to store any kind of data in Windows.Storage.ApplicationData
. It also has a size limit.
Upvotes: 1
Views: 669
Reputation: 3162
Windows.Storage.ApplicationData
gives you access to multiple sources of data. Files and settings stored locally, in the cloud, and a temporary folder.
Check out the API documentation here: http://msdn.microsoft.com/library/windows/apps/BR241587
Here you have samples of how to store data in local sources: http://msdn.microsoft.com/en-US/library/windows/apps/hh465118
For local/roaming storage:
Windows.Storage.ApplicationData.roamingStorageQuota
for the maximum size limit (in KB).For local/roaming settings:
Upvotes: 1