mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-16 21:24:54 +00:00
docs: add missing XML comments for Mobile Control Project
This commit is contained in:
@@ -8,12 +8,24 @@ namespace PepperDash.Essentials.Touchpanel
|
||||
/// </summary>
|
||||
public interface ITswAppControl : IKeyed
|
||||
{
|
||||
/// <summary>
|
||||
/// Updates when the Zoom Room Control Application opens or closes
|
||||
/// </summary>
|
||||
BoolFeedback AppOpenFeedback { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Hide the Zoom App and show the User Control Application
|
||||
/// </summary>
|
||||
void HideOpenApp();
|
||||
|
||||
/// <summary>
|
||||
/// Close the Zoom App and show the User Control Application
|
||||
/// </summary>
|
||||
void CloseOpenApp();
|
||||
|
||||
/// <summary>
|
||||
/// Open the Zoom App
|
||||
/// </summary>
|
||||
void OpenApp();
|
||||
}
|
||||
|
||||
@@ -22,10 +34,19 @@ namespace PepperDash.Essentials.Touchpanel
|
||||
/// </summary>
|
||||
public interface ITswZoomControl : IKeyed
|
||||
{
|
||||
/// <summary>
|
||||
/// Updates when Zoom has an incoming call
|
||||
/// </summary>
|
||||
BoolFeedback ZoomIncomingCallFeedback { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Updates when Zoom is in a call
|
||||
/// </summary>
|
||||
BoolFeedback ZoomInCallFeedback { get; }
|
||||
|
||||
/// <summary>
|
||||
/// End a Zoom Call
|
||||
/// </summary>
|
||||
void EndZoomCall();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user