You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* ApplicationData: Remove roaming scenarios that don't apply to Windows 11
* Geolocation: Add geometric and time dilution of position properties
* WindowsAudioSession: Fix buffer leaks, waveformat leaks, low latency, hardware offload, handle systems with no sound device
* UserInfo: New CheckUserAgeConsentGroupAsync method
* ApplicationData, PasswordVault, WindowsAudioSession: Ported to C++/WinRT
Copy file name to clipboardExpand all lines: Samples/ApplicationData/README.md
+13-12Lines changed: 13 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,8 @@
2
2
page_type: sample
3
3
languages:
4
4
- csharp
5
-
- vb
5
+
- cpp
6
+
- cppwinrt
6
7
products:
7
8
- windows
8
9
- windows-uwp
@@ -37,41 +38,41 @@ Shows how to store and retrieve data that is specific to each user and app by us
37
38
Application data includes session state, user preferences, and other settings. It is created, read, updated, and deleted when the app is running. The operating system manages these data stores for your app:
38
39
39
40
- local: Data that exists on the current device and is backed up in the cloud
40
-
- roaming: Data that exists on all devices on which the user has installed the app
41
41
- temporary: Data that could be removed by the system any time the app isn't running
42
42
- localcache: Persistent data that exists only on the current device
43
43
44
-
If you use roaming data in your app, your users can easily keep your app's application data in sync across multiple devices. The operating system replicates roaming data to the cloud when it is updated, and synchronizes the data to any other devices on which the app is installed, reducing the amount of setup work that the user needs to do to install your app on multiple devices.
45
-
46
44
If you use local data in your app, your users can back up application data in the cloud. This application data can then be restored back on any other device while setting up the device with the same account.
47
45
46
+
The system also manages a roaming data store,
47
+
but the data no longer roams starting in Windows 11.
48
+
48
49
The sample covers these key tasks:
49
50
50
51
- Reading and writing settings to an app data store
51
52
- Reading and writing files to an app data store
52
-
- Responding to roaming events
53
-
54
-
## Guidelines
55
53
56
-
[Guidelines for roaming application data](http://msdn.microsoft.com/library/windows/apps/hh465094)
54
+
## Related topics
57
55
58
-
## Concepts
56
+
###Concepts
59
57
60
58
[Store and retrieve settings and other app data](https://msdn.microsoft.com/library/windows/apps/mt299098)
61
59
62
-
## Reference
60
+
### Related samples
61
+
62
+
*[ApplicationData sample](/archived/ApplicationData/) for Visual Basic (archived)
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
0 commit comments