Changed "new" to "virtual/override".
This commit is contained in:
parent
861d0f121f
commit
285ad0499f
5 changed files with 5 additions and 5 deletions
|
@ -954,7 +954,7 @@ namespace WebsitePanel.Providers.FTP
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
protected bool IsMsFTPInstalled()
|
protected virtual bool IsMsFTPInstalled()
|
||||||
{
|
{
|
||||||
int value = 0;
|
int value = 0;
|
||||||
RegistryKey root = Registry.LocalMachine;
|
RegistryKey root = Registry.LocalMachine;
|
||||||
|
|
|
@ -12,7 +12,7 @@ namespace WebsitePanel.Providers.FTP
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
protected new bool IsMsFTPInstalled()
|
protected override bool IsMsFTPInstalled()
|
||||||
{
|
{
|
||||||
int value = 0;
|
int value = 0;
|
||||||
RegistryKey root = Registry.LocalMachine;
|
RegistryKey root = Registry.LocalMachine;
|
||||||
|
|
|
@ -3477,7 +3477,7 @@ namespace WebsitePanel.Providers.Web
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public new bool IsIISInstalled()
|
public override bool IsIISInstalled()
|
||||||
{
|
{
|
||||||
int value = 0;
|
int value = 0;
|
||||||
RegistryKey root = Registry.LocalMachine;
|
RegistryKey root = Registry.LocalMachine;
|
||||||
|
|
|
@ -3368,7 +3368,7 @@ namespace WebsitePanel.Providers.Web
|
||||||
}
|
}
|
||||||
#endregion
|
#endregion
|
||||||
|
|
||||||
public bool IsIISInstalled()
|
public virtual bool IsIISInstalled()
|
||||||
{
|
{
|
||||||
int value = 0;
|
int value = 0;
|
||||||
RegistryKey root = Registry.LocalMachine;
|
RegistryKey root = Registry.LocalMachine;
|
||||||
|
|
|
@ -12,7 +12,7 @@ namespace WebsitePanel.Providers.Web
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
public new bool IsIISInstalled()
|
public override bool IsIISInstalled()
|
||||||
{
|
{
|
||||||
int value = 0;
|
int value = 0;
|
||||||
RegistryKey root = Registry.LocalMachine;
|
RegistryKey root = Registry.LocalMachine;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue