From 00a491d93733d4625ad329b2ba8237f445364b3f Mon Sep 17 00:00:00 2001 From: Mirta Date: Wed, 30 Dec 2020 16:39:52 +0200 Subject: merge --- .../MachineStudioSettings.cs | 37 ++++------------------ 1 file changed, 6 insertions(+), 31 deletions(-) (limited to 'Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineStudioSettings.cs') diff --git a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineStudioSettings.cs b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineStudioSettings.cs index 25dfc2dc8..c307a8e33 100644 --- a/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineStudioSettings.cs +++ b/Software/Visual_Studio/MachineStudio/Tango.MachineStudio.Common/MachineStudioSettings.cs @@ -8,10 +8,8 @@ using System.Windows; using Tango.BL; using Tango.Integration.Operation; using Tango.Logging; -using Tango.MachineStudio.Common.Web; using Tango.PMR.Printing; using Tango.Settings; -using Tango.Transport.Adapters; using Tango.Web; namespace Tango.MachineStudio.Common @@ -41,11 +39,6 @@ namespace Tango.MachineStudio.Common /// public String LastLoginPassword { get; set; } - /// - /// Gets or sets the last login method. - /// - public LoginMethod LastLoginMethod { get; set; } - /// /// Gets or sets a value indicating whether to save the user credentials. /// @@ -56,6 +49,11 @@ namespace Tango.MachineStudio.Common /// public String LastVirtualMachineSerialNumber { get; set; } + /// + /// Gets or sets the logging categories. + /// + public List LoggingCategories { get; set; } + /// /// Gets or sets the last bounds. /// @@ -136,26 +134,6 @@ namespace Tango.MachineStudio.Common /// public TimeSpan ExternalBridgeRequestTimeout { get; set; } - /// - /// Gets or sets the external bridge continuous request timeout. - /// - public TimeSpan ExternalBridgeContinuousRequestTimeout { get; set; } - - /// - /// Gets or sets the external bridge SignalR hub. - /// - public String ExternalBridgeSignalRHub { get; set; } - - /// - /// Gets or sets a value indicating whether to enable external bridge scanning via SignalR. - /// - public bool EnableExternalBridgeSignalR { get; set; } - - /// - /// Gets or sets the TCP transport adapter write mode. - /// - public TcpTransportAdapterWriteMode TcpTransportAdapterWriteMode { get; set; } - /// /// Gets the machine service address. /// @@ -184,6 +162,7 @@ namespace Tango.MachineStudio.Common public MachineStudioSettings() { LastBounds = new Rect(); + LoggingCategories = new List(); DefaultIssueReportTags = new List(); StudioModulesBounds = new List(); Environment = WorkingEnvironment.Remote; @@ -194,10 +173,6 @@ namespace Tango.MachineStudio.Common Theme = MachineStudioTheme.Light; JobUnitsMethod = JobUnitsMethods.Operator; ExternalBridgeRequestTimeout = TimeSpan.FromSeconds(5); - ExternalBridgeContinuousRequestTimeout = TimeSpan.FromSeconds(5); - ExternalBridgeSignalRHub = "ExternalBridgeHub"; - EnableExternalBridgeSignalR = true; - TcpTransportAdapterWriteMode = TcpTransportAdapterWriteMode.Interval; } } } -- cgit v1.3.1