docs: fix Copilot comments

This commit is contained in:
Andrew Welker
2025-10-15 12:54:14 -05:00
parent 3e0f318f7f
commit 608601990b
7 changed files with 11 additions and 9 deletions

View File

@@ -110,7 +110,9 @@ namespace PepperDash.Essentials
/// </summary>
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;
private IEssentialsRoomCombiner _roomCombiner;

View File

@@ -8,14 +8,14 @@ using PepperDash.Essentials.AppServer.Messengers;
namespace PepperDash.Essentials.Touchpanel
{
/// <summary>
/// Messenger to handle
/// Messenger to handle Zoom status and control for a TSW panel that supports the Zoom Application
/// </summary>
public class ITswZoomControlMessenger : MessengerBase
{
private readonly ITswZoomControl _zoomControl;
/// <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>
/// <param name="key">The key for this messenger</param>
/// <param name="messagePath">The message path for this messenger</param>

View File

@@ -12,9 +12,9 @@ namespace PepperDash.Essentials
private static int nextClientId = 0;
/// <summary>
/// Get
/// Get the next unique client ID
/// </summary>
/// <returns></returns>
/// <returns>Client ID</returns>
public static int GetNextClientId()
{
nextClientId++;

View File

@@ -72,7 +72,7 @@ namespace PepperDash.Essentials.WebApiHandlers
public MobileControlDirectServer DirectServer => mcController.Config.DirectServer.EnableDirectServer ? new MobileControlDirectServer(mcController.DirectServer) : null;
/// <summary>
/// Create in instace of the <see cref="InformationResponse"/> class.
/// Create an instance of the <see cref="InformationResponse"/> class.
/// </summary>
/// <param name="controller"></param>
public InformationResponse(MobileControlSystemController controller)

View File

@@ -13,7 +13,7 @@ namespace PepperDash.Essentials.WebSocketServer
public string ClientId { get; private set; }
/// <summary>
/// Initalize an instance of the <see cref="ConnectionClosedEventArgs"/> class.
/// Initialize an instance of the <see cref="ConnectionClosedEventArgs"/> class.
/// </summary>
/// <param name="clientId">client that's closing</param>
public ConnectionClosedEventArgs(string clientId)

View File

@@ -74,7 +74,7 @@ namespace PepperDash.Essentials.WebSocketServer
/// </summary>
/// <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="token"></param>
/// <param name="token">The token associated with this client</param>
public UiClient(string key, string id, string token)
{
Key = key;

View File

@@ -25,7 +25,7 @@ namespace PepperDash.Essentials.WebSocketServer
/// Initialize an instance of the <see cref="Version"/> class
/// </summary>
/// <remarks>
/// the <see cref="ServerIsRunningOnProcessorHardware"/> property is set to true by default.
/// The <see cref="ServerIsRunningOnProcessorHardware"/> property is set to true by default.
/// </remarks>
public Version()
{