SEBWIN-226: Removed TrySaveSettings from configuration API.
This commit is contained in:
parent
7ee5c3ac3e
commit
72c61d21ab
2 changed files with 0 additions and 10 deletions
|
@ -156,11 +156,6 @@ namespace SafeExamBrowser.Configuration
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public SaveStatus TrySaveSettings(Uri destination, FormatType format, Settings settings, EncryptionParameters encryption = null)
|
|
||||||
{
|
|
||||||
throw new NotImplementedException("This functionality is not part of version 3.0 Alpha!");
|
|
||||||
}
|
|
||||||
|
|
||||||
private EncryptionParameters DetermineEncryptionForClientConfiguration(IDictionary<string, object> data, EncryptionParameters encryption)
|
private EncryptionParameters DetermineEncryptionForClientConfiguration(IDictionary<string, object> data, EncryptionParameters encryption)
|
||||||
{
|
{
|
||||||
var hasKey = data.TryGetValue(Keys.ConfigurationFile.KeepClientConfigEncryption, out var value);
|
var hasKey = data.TryGetValue(Keys.ConfigurationFile.KeepClientConfigEncryption, out var value);
|
||||||
|
|
|
@ -62,10 +62,5 @@ namespace SafeExamBrowser.Contracts.Configuration
|
||||||
/// Attempts to load settings from the specified resource.
|
/// Attempts to load settings from the specified resource.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
LoadStatus TryLoadSettings(Uri resource, out Settings.Settings settings, PasswordParameters password = null);
|
LoadStatus TryLoadSettings(Uri resource, out Settings.Settings settings, PasswordParameters password = null);
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Attempts to save settings according to the specified parameters.
|
|
||||||
/// </summary>
|
|
||||||
SaveStatus TrySaveSettings(Uri destination, FormatType format, Settings.Settings settings, EncryptionParameters encryption = null);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue