ReactiveMarbles.CacheDatabase.EncryptedSqlite3 1.3.1
dotnet add package ReactiveMarbles.CacheDatabase.EncryptedSqlite3 --version 1.3.1
NuGet\Install-Package ReactiveMarbles.CacheDatabase.EncryptedSqlite3 -Version 1.3.1
此命令旨在在 Visual Studio 的包管理器控制台中使用,因为它使用 NuGet 模块的 Install-Package 版本。
<PackageReference Include="ReactiveMarbles.CacheDatabase.EncryptedSqlite3" Version="1.3.1" />
对于支持 PackageReference 的项目,将此 XML 节点复制到项目文件中以引用该包。
paket add ReactiveMarbles.CacheDatabase.EncryptedSqlite3 --version 1.3.1
NuGet 团队不提供对此客户端的支持。请联系其 维护者 以获得支持。
#r "nuget: ReactiveMarbles.CacheDatabase.EncryptedSqlite3, 1.3.1"
#r 指令可用于 F# Interactive 和 Polyglot Notebooks。将其复制到交互工具或脚本的源代码中以引用该包。
// Install ReactiveMarbles.CacheDatabase.EncryptedSqlite3 as a Cake Addin #addin nuget:?package=ReactiveMarbles.CacheDatabase.EncryptedSqlite3&version=1.3.1 // Install ReactiveMarbles.CacheDatabase.EncryptedSqlite3 as a Cake Tool #tool nuget:?package=ReactiveMarbles.CacheDatabase.EncryptedSqlite3&version=1.3.1
NuGet 团队不提供对此客户端的支持。请联系其 维护者 以获得支持。
CacheDatabase
使用 Akavache 和 Frank Krueger 的 SQLite 框架的一个重实现。
ReactiveMarbles.CacheDatabase.EncryptedSqlite3
ReactiveMarbles.CacheDatabase.Sqlite3
CacheDatabase.Settings
为可安装应用程序提供设置的数据库,这些设置位于应用程序文件夹的一级之下,使得更新更加容易。
示例应用程序设置代码
public class ViewSettings : SettingsBase
{
/// <summary>
/// Initializes a new instance of the <see cref="ViewSettings"/> class.
/// </summary>
public ViewSettings()
: base(nameof(ViewSettings))
{
}
/// <summary>
/// Gets or sets a value indicating whether [bool test].
/// </summary>
/// <value>
/// <c>true</c> if [bool test]; otherwise, <c>false</c>.
/// </value>
public bool BoolTest
{
get => GetOrCreate(true); set => SetOrCreate(value);
}
/// <summary>
/// Gets or sets the byte test.
/// </summary>
/// <value>
/// The byte test.
/// </value>
public byte ByteTest
{
get => GetOrCreate((byte)123); set => SetOrCreate(value);
}
/// <summary>
/// Gets or sets the short test.
/// </summary>
/// <value>
/// The short test.
/// </value>
public short ShortTest
{
get => GetOrCreate((short)16); set => SetOrCreate(value);
}
/// <summary>
/// Gets or sets the int test.
/// </summary>
/// <value>
/// The int test.
/// </value>
public int IntTest
{
get => GetOrCreate(1); set => SetOrCreate(value);
}
/// <summary>
/// Gets or sets the long test.
/// </summary>
/// <value>
/// The long test.
/// </value>
public long LongTest
{
get => GetOrCreate(123456); set => SetOrCreate(value);
}
/// <summary>
/// Gets or sets the string test.
/// </summary>
/// <value>
/// The string test.
/// </value>
public string? StringTest
{
get => GetOrCreate("TestString"); set => SetOrCreate(value);
}
/// <summary>
/// Gets or sets the float test.
/// </summary>
/// <value>
/// The float test.
/// </value>
public float FloatTest
{
get => GetOrCreate(2.2f); set => SetOrCreate(value);
}
/// <summary>
/// Gets or sets the double test.
/// </summary>
/// <value>
/// The double test.
/// </value>
public double DoubleTest
{
get => GetOrCreate(23.8d); set => SetOrCreate(value);
}
/// <summary>
/// Gets or sets the enum test.
/// </summary>
/// <value>
/// The enum test.
/// </value>
public EnumTestValue EnumTest
{
get => GetOrCreate(EnumTestValue.Option1); set => SetOrCreate(value);
}
}
可选:覆盖设置缓存路径
AppInfo.OverrideSettingsCachePath(path);
创建一个实例或获取现有的 Settings SettingsCache
安装ReactiveMarbles.CacheDatabase.Settings
var viewSettings = await AppInfo.SetupSettingsStore<ViewSettings>();
创建实例或获取现有EncryptedSettings SettingsCache
安装ReactiveMarbles.CacheDatabase.EncryptedSettings
var viewSettings = await AppInfo.SetupSettingsStore<ViewSettings>("SECURE_PASSWORD");
删除SettingsCache的实例
await AppInfo.DeleteSettingsStore<ViewSettings>();
在应用程序退出时关闭SettingsCache
await AppInfo.DisposeSettingsStore<ViewSettings>();
可以创建多个SettingsCache,每个SettingsCache都会创建一个以SettingsCache类名为名称的SettingsCache数据库。
产品 | 版本 兼容的和额外的计算目标框架版本。 |
---|---|
.NET | net5.0被计算。 net5.0-windows被计算。 net6.0是兼容的。 net6.0-android被计算。 net6.0-ios被计算。 net6.0-maccatalyst被计算。 net6.0-macos被计算。 net6.0-tvos被计算。 net6.0-windows被计算。 net7.0是兼容的。 net7.0-android被计算。 net7.0-ios被计算。 net7.0-maccatalyst被计算。 net7.0-macos被计算。 net7.0-tvos被计算。 net7.0-windows被计算。 net8.0被计算。 net8.0-android被计算。 net8.0-browser被计算。 net8.0-ios被计算。 net8.0-maccatalyst被计算。 net8.0-macos被计算。 net8.0-tvos被计算。 net8.0-windows被计算。 |
.NET Core | netcoreapp2.0被计算。 netcoreapp2.1被计算。 netcoreapp2.2被计算。 netcoreapp3.0被计算。 netcoreapp3.1被计算。 |
.NET 标准化 | netstandard2.0 兼容。 netstandard2.1 已计算。 |
.NET Framework | net461 已计算。 net462 已计算。 net463 已计算。 net47 已计算。 net471 已计算。 net472 已计算。 net48 已计算。 net481 已计算。 |
MonoAndroid | monoandroid 已计算。 |
MonoMac | monomac 已计算。 |
MonoTouch | monotouch 已计算。 |
Tizen | tizen40 已计算。 tizen60 已计算。 |
Xamarin.iOS | xamarinios 已计算。 |
Xamarin.Mac | xamarinmac 已计算。 |
Xamarin.TVOS | xamarintvos 已计算。 |
Xamarin.WatchOS | xamarinwatchos 已计算。 |
-
.NETStandard 2.0
- ReactiveMarbles.CacheDatabase.Core (>= 1.3.1)
- sqlite-net-sqlcipher (>= 1.9.141-beta)
- SQLitePCLRaw.bundle_e_sqlcipher (>= 2.1.5)
-
net6.0
- ReactiveMarbles.CacheDatabase.Core (>= 1.3.1)
- sqlite-net-sqlcipher (>= 1.9.141-beta)
- SQLitePCLRaw.bundle_e_sqlcipher (>= 2.1.5)
-
net7.0
- ReactiveMarbles.CacheDatabase.Core (>= 1.3.1)
- sqlite-net-sqlcipher (>= 1.9.141-beta)
- SQLitePCLRaw.bundle_e_sqlcipher (>= 2.1.5)
NuGet 包 (1)
显示依赖 ReactiveMarbles.CacheDatabase.EncryptedSqlite3 的最高 1 个 NuGet 包
包 | 下载 |
---|---|
ReactiveMarbles.CacheDatabase.EncryptedSettings
允许用户在本地 sqlite 数据库中缓存值。 |
GitHub 仓库
此包不被任何流行的 GitHub 仓库使用。