mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-12 19:24:53 +00:00
docs: fix Copilot comments
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -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++;
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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)
|
||||
|
||||
@@ -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;
|
||||
|
||||
@@ -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()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user