WebDav Explorer code cleanup
This commit is contained in:
parent
a4c6331a2a
commit
f5b41b5c85
17 changed files with 210 additions and 216 deletions
|
@ -1,16 +0,0 @@
|
|||
namespace WebsitePanel.WebDavPortal.Config.Entities
|
||||
{
|
||||
public class Rfc2898CryptographyParameters : AbstractConfigCollection
|
||||
{
|
||||
public string PasswordHash { get; private set; }
|
||||
public string SaltKey { get; private set; }
|
||||
public string VIKey { get; private set; }
|
||||
|
||||
public Rfc2898CryptographyParameters()
|
||||
{
|
||||
PasswordHash = ConfigSection.Rfc2898Cryptography.PasswordHash;
|
||||
SaltKey = ConfigSection.Rfc2898Cryptography.SaltKey;
|
||||
VIKey = ConfigSection.Rfc2898Cryptography.VIKey;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -8,7 +8,6 @@ namespace WebsitePanel.WebDavPortal.Config
|
|||
string ApplicationName { get; }
|
||||
ElementsRendering ElementsRendering { get; }
|
||||
WebsitePanelConstantUserParameters WebsitePanelConstantUserParameters { get; }
|
||||
Rfc2898CryptographyParameters Rfc2898CryptographyParameters { get; }
|
||||
ConnectionStringsCollection ConnectionStrings { get; }
|
||||
SessionKeysCollection SessionKeys { get; }
|
||||
FileIconsDictionary FileIcons { get; }
|
||||
|
|
|
@ -12,7 +12,6 @@ namespace WebsitePanel.WebDavPortal.Config
|
|||
private WebDavAppConfigManager()
|
||||
{
|
||||
_configSection = ((WebDavExplorerConfigurationSettingsSection) ConfigurationManager.GetSection(WebDavExplorerConfigurationSettingsSection.SectionName));
|
||||
Rfc2898CryptographyParameters = new Rfc2898CryptographyParameters();
|
||||
WebsitePanelConstantUserParameters = new WebsitePanelConstantUserParameters();
|
||||
ElementsRendering = new ElementsRendering();
|
||||
ConnectionStrings = new ConnectionStringsCollection();
|
||||
|
@ -39,7 +38,6 @@ namespace WebsitePanel.WebDavPortal.Config
|
|||
|
||||
public ElementsRendering ElementsRendering { get; private set; }
|
||||
public WebsitePanelConstantUserParameters WebsitePanelConstantUserParameters { get; private set; }
|
||||
public Rfc2898CryptographyParameters Rfc2898CryptographyParameters { get; private set; }
|
||||
public ConnectionStringsCollection ConnectionStrings { get; private set; }
|
||||
public SessionKeysCollection SessionKeys { get; private set; }
|
||||
public FileIconsDictionary FileIcons { get; private set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue