privatezilla/src/Privatezilla/Settings/Apps/CellularData.cs
2020-09-22 20:01:26 +02:00

55 lines
No EOL
1.4 KiB
C#

using Microsoft.Win32;
using Privatezilla.Locales;
namespace Privatezilla.Setting.Apps
{
internal class CellularData : SettingBase
{
private const string AppKey = @"HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\cellularData";
private const string DesiredValue = "Deny";
public override string ID()
{
return Locale.settingsAppsCellularData;
}
public override string Info()
{
return Locale.settingsAppsCellularDataInfo.Replace("\\n", "\n");
}
public override bool CheckSetting()
{
return !(
RegistryHelper.StringEquals(AppKey, "Value", DesiredValue)
);
}
public override bool DoSetting()
{
try
{
Registry.SetValue(AppKey, "Value", DesiredValue, RegistryValueKind.String);
return true;
}
catch
{ }
return false;
}
public override bool UndoSetting()
{
try
{
Registry.SetValue(AppKey, "Value", "Allow", RegistryValueKind.String);
return true;
}
catch
{ }
return false;
}
}
}