Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: about 4 hours 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 (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-03-06T01:05:12.000Z (over 5 years ago)
- Last Synced: 2023-08-26T21:59:01.371Z (about 1 year 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