mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-10 10:48:33 +00:00
Update all model classes to Electron API 39.2
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
/// <summary>
|
||||
///
|
||||
/// </summary>
|
||||
/// <remarks>Up-to-date with Electron API 39.2</remarks>
|
||||
public class ClearStorageDataOptions
|
||||
{
|
||||
/// <summary>
|
||||
@@ -11,13 +12,16 @@
|
||||
public string Origin { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The types of storages to clear, can contain: appcache, cookies, filesystem,
|
||||
/// indexdb, localstorage, shadercache, websql, serviceworkers, cachestorage.
|
||||
/// The types of storages to clear. Can contain: cookies, filesystem, indexdb,
|
||||
/// localstorage, shadercache, websql, serviceworkers, cachestorage.
|
||||
/// If not specified, all storage types are cleared.
|
||||
/// </summary>
|
||||
public string[] Storages { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// The types of quotas to clear, can contain: temporary, persistent, syncable.
|
||||
/// The types of quotas to clear. Can contain: temporary. If not specified,
|
||||
/// all quotas are cleared. The <c>quotas</c> option is deprecated;
|
||||
/// "temporary" is the only remaining supported quota type.
|
||||
/// </summary>
|
||||
public string[] Quotas { get; set; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user