Class CreateAppFoldersIfDontExistsArgs
- Namespace
- SunamoPlatformUwpInterop.Args
- Assembly
- SunamoPlatformUwpInterop.dll
Arguments for creating application folders if they do not exist.
public class CreateAppFoldersIfDontExistsArgs
- Inheritance
-
CreateAppFoldersIfDontExistsArgs
- Inherited Members
- Extension Methods
Properties
AppName
Gets or sets the application name used for creating the root folder.
public string AppName { get; set; }
Property Value
KeysCommonSettings
Gets or sets the list of keys for common settings (prefix with ! for encrypted).
public List<string> KeysCommonSettings { get; set; }
Property Value
KeysSettingsBool
Gets or sets the list of keys for boolean settings.
public List<string> KeysSettingsBool { get; set; }
Property Value
KeysSettingsDateTime
Gets or sets the list of keys for DateTime settings.
public List<string> KeysSettingsDateTime { get; set; }
Property Value
KeysSettingsList
Gets or sets the list of keys for list settings.
public List<string> KeysSettingsList { get; set; }
Property Value
KeysSettingsOther
Gets or sets the list of keys for other string settings.
public List<string> KeysSettingsOther { get; set; }
Property Value
RijndaelBytesDecrypt
Gets or sets the function for Rijndael byte decryption.
public Func<List<byte>, List<byte>>? RijndaelBytesDecrypt { get; set; }
Property Value
RijndaelBytesEncrypt
Gets or sets the function for Rijndael byte encryption.
public Func<List<byte>, List<byte>>? RijndaelBytesEncrypt { get; set; }