From bd72c7efe687dfaca6d4fd3c0fc2b5a39d57df55 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Wed, 12 Aug 2020 02:12:46 +0300 Subject: More work on proc_doc. Fixed app crash on code editor selection. --- .../FSE/Tango.FSE.Common/SQL/RemoteSqlCommand.cs | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommand.cs') diff --git a/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommand.cs b/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommand.cs index 95f94ad08..99d0f1878 100644 --- a/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommand.cs +++ b/Software/Visual_Studio/FSE/Tango.FSE.Common/SQL/RemoteSqlCommand.cs @@ -6,12 +6,37 @@ using System.Threading.Tasks; namespace Tango.FSE.Common.SQL { + /// + /// Represents a SQL command that can be executed by a . + /// + /// + /// + /// + /// The following example demonstrates how to set the connected machine's demo state and query for the connected machine's jobs. + /// + /// + /// + /// public class RemoteSqlCommand { + /// + /// Gets or sets the command execution mode. + /// public RemoteSqlCommandMode Mode { get; set; } + + /// + /// Gets or sets the SQL query. + /// public String SQL { get; set; } + + /// + /// Gets or sets the command timeout. + /// public int Timeout { get; set; } + /// + /// Initializes a new instance of the class. + /// public RemoteSqlCommand() { Timeout = 30; -- cgit v1.3.1