added back the server call home

This commit is contained in:
Brett Hewitson 2021-12-20 12:14:19 +10:00
parent 93d273c133
commit fc6f309178
11 changed files with 152 additions and 6 deletions

View file

@ -3048,5 +3048,35 @@ namespace ServerManagerTool {
this["LoggingMaxArchiveDays"] = value;
}
}
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("http://servermanagers.azurewebsites.net/api/server/call/{0}/{1}/")]
public string ServerCallUrlFormat {
get {
return ((string)(this["ServerCallUrlFormat"]));
}
}
[global::System.Configuration.ApplicationScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("12")]
public int ServerCallUrlDelay {
get {
return ((int)(this["ServerCallUrlDelay"]));
}
}
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("2000-01-01")]
public global::System.DateTime ServerCallUrlLast {
get {
return ((global::System.DateTime)(this["ServerCallUrlLast"]));
}
set {
this["ServerCallUrlLast"] = value;
}
}
}
}