https://github.com/emoacht/windowsruntimesettings
A library for Windows Runtime app to save/load settings of various types with encryption if necessary
https://github.com/emoacht/windowsruntimesettings
Last synced: 8 days ago
JSON representation
A library for Windows Runtime app to save/load settings of various types with encryption if necessary
- Host: GitHub
- URL: https://github.com/emoacht/windowsruntimesettings
- Owner: emoacht
- Created: 2015-08-06T04:44:06.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2019-03-06T01:05:12.000Z (over 6 years ago)
- Last Synced: 2025-01-16T16:23:30.978Z (6 months ago)
- Language: C#
- Size: 73.2 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Windows Runtime Settings
A library for Windows Runtime app to save/load settings of various types with encryption if necessary. It utilizes LocalSettings/RoamingSettings, LocalFolder/RoamingFolder and PasswordVault as backing stores of properties for settings.
## Requirements
* Some parts use features of C# 6.0 and so require Visual Studio 2015.
## Usage
| Attribute | Description |
|---------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------|
| RoamingAttribute | Property values are saved in RoamingSettings or RoamingFolder (if CryptFileAttribute is also attached). Otherwise, the values are saved in LocalSettings. |
| CryptVaultAttribute | Property values are saved in PasswordVault. The number of items is limited to 10 at the maximum. |
| CryptFileAttribute | Property values are encrypted and saved in a file in LocalFolder or RoamingFolder (if RoamingAttribute is also attached). |## License
- MIT License