mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-08 09:15:06 +00:00
docs: add missing XML comments for Mobile Control Project
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
using Crestron.SimplSharp.WebScripting;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
using Crestron.SimplSharp.WebScripting;
|
||||
using Newtonsoft.Json;
|
||||
using PepperDash.Core;
|
||||
using PepperDash.Core.Web.RequestHandlers;
|
||||
using PepperDash.Essentials.Core.Web;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace PepperDash.Essentials.WebApiHandlers
|
||||
{
|
||||
@@ -15,11 +15,20 @@ namespace PepperDash.Essentials.WebApiHandlers
|
||||
{
|
||||
private readonly MobileControlSystemController mcController;
|
||||
|
||||
/// <summary>
|
||||
/// Create an instance of the <see cref="MobileAuthRequestHandler"/> class.
|
||||
/// </summary>
|
||||
/// <param name="controller"></param>
|
||||
public MobileAuthRequestHandler(MobileControlSystemController controller) : base(true)
|
||||
{
|
||||
mcController = controller;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Handle authorization request for this processor
|
||||
/// </summary>
|
||||
/// <param name="context">request context</param>
|
||||
/// <returns>Task</returns>
|
||||
protected override async Task HandlePost(HttpCwsContext context)
|
||||
{
|
||||
try
|
||||
|
||||
Reference in New Issue
Block a user