mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-17 13:45:01 +00:00
docs: fix Copilot comments
This commit is contained in:
@@ -110,7 +110,9 @@ namespace PepperDash.Essentials
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public string SystemUrl; //set only from SIMPL Bridge!
|
public string SystemUrl; //set only from SIMPL Bridge!
|
||||||
|
|
||||||
///
|
/// <summary>
|
||||||
|
/// True if the Mobile Control Edge Server Websocket is connected
|
||||||
|
/// </summary>
|
||||||
public bool Connected => _wsClient2 != null && _wsClient2.IsAlive;
|
public bool Connected => _wsClient2 != null && _wsClient2.IsAlive;
|
||||||
|
|
||||||
private IEssentialsRoomCombiner _roomCombiner;
|
private IEssentialsRoomCombiner _roomCombiner;
|
||||||
|
|||||||
@@ -8,14 +8,14 @@ using PepperDash.Essentials.AppServer.Messengers;
|
|||||||
namespace PepperDash.Essentials.Touchpanel
|
namespace PepperDash.Essentials.Touchpanel
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Messenger to handle
|
/// Messenger to handle Zoom status and control for a TSW panel that supports the Zoom Application
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public class ITswZoomControlMessenger : MessengerBase
|
public class ITswZoomControlMessenger : MessengerBase
|
||||||
{
|
{
|
||||||
private readonly ITswZoomControl _zoomControl;
|
private readonly ITswZoomControl _zoomControl;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create in instance of the <see cref="ITswZoomControlMessenger"/> class for the given device
|
/// Create an instance of the <see cref="ITswZoomControlMessenger"/> class for the given device
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="key">The key for this messenger</param>
|
/// <param name="key">The key for this messenger</param>
|
||||||
/// <param name="messagePath">The message path for this messenger</param>
|
/// <param name="messagePath">The message path for this messenger</param>
|
||||||
|
|||||||
@@ -12,9 +12,9 @@ namespace PepperDash.Essentials
|
|||||||
private static int nextClientId = 0;
|
private static int nextClientId = 0;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Get
|
/// Get the next unique client ID
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns></returns>
|
/// <returns>Client ID</returns>
|
||||||
public static int GetNextClientId()
|
public static int GetNextClientId()
|
||||||
{
|
{
|
||||||
nextClientId++;
|
nextClientId++;
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ namespace PepperDash.Essentials.WebApiHandlers
|
|||||||
public MobileControlDirectServer DirectServer => mcController.Config.DirectServer.EnableDirectServer ? new MobileControlDirectServer(mcController.DirectServer) : null;
|
public MobileControlDirectServer DirectServer => mcController.Config.DirectServer.EnableDirectServer ? new MobileControlDirectServer(mcController.DirectServer) : null;
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Create in instace of the <see cref="InformationResponse"/> class.
|
/// Create an instance of the <see cref="InformationResponse"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="controller"></param>
|
/// <param name="controller"></param>
|
||||||
public InformationResponse(MobileControlSystemController controller)
|
public InformationResponse(MobileControlSystemController controller)
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ namespace PepperDash.Essentials.WebSocketServer
|
|||||||
public string ClientId { get; private set; }
|
public string ClientId { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Initalize an instance of the <see cref="ConnectionClosedEventArgs"/> class.
|
/// Initialize an instance of the <see cref="ConnectionClosedEventArgs"/> class.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="clientId">client that's closing</param>
|
/// <param name="clientId">client that's closing</param>
|
||||||
public ConnectionClosedEventArgs(string clientId)
|
public ConnectionClosedEventArgs(string clientId)
|
||||||
|
|||||||
@@ -74,7 +74,7 @@ namespace PepperDash.Essentials.WebSocketServer
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="key">The unique key to identify this client</param>
|
/// <param name="key">The unique key to identify this client</param>
|
||||||
/// <param name="id">The client ID used by the client for this connection</param>
|
/// <param name="id">The client ID used by the client for this connection</param>
|
||||||
/// <param name="token"></param>
|
/// <param name="token">The token associated with this client</param>
|
||||||
public UiClient(string key, string id, string token)
|
public UiClient(string key, string id, string token)
|
||||||
{
|
{
|
||||||
Key = key;
|
Key = key;
|
||||||
|
|||||||
@@ -25,7 +25,7 @@ namespace PepperDash.Essentials.WebSocketServer
|
|||||||
/// Initialize an instance of the <see cref="Version"/> class
|
/// Initialize an instance of the <see cref="Version"/> class
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
/// the <see cref="ServerIsRunningOnProcessorHardware"/> property is set to true by default.
|
/// The <see cref="ServerIsRunningOnProcessorHardware"/> property is set to true by default.
|
||||||
/// </remarks>
|
/// </remarks>
|
||||||
public Version()
|
public Version()
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user