mirror of
https://github.com/PepperDash/PepperDashCore.git
synced 2026-04-12 20:16:34 +00:00
fix: rebased on latest development branch, added missing XML comments to resolve warnings in Web classes
This commit is contained in:
parent
78631be830
commit
897b1c86e1
2 changed files with 13 additions and 0 deletions
|
|
@ -2,6 +2,9 @@
|
||||||
|
|
||||||
namespace PepperDash.Core.Web.RequestHandlers
|
namespace PepperDash.Core.Web.RequestHandlers
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Web API default request handler
|
||||||
|
/// </summary>
|
||||||
public class DefaultRequestRequestHandler : WebApiBaseRequestHandler
|
public class DefaultRequestRequestHandler : WebApiBaseRequestHandler
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,9 @@ using PepperDash.Core.Web.RequestHandlers;
|
||||||
|
|
||||||
namespace PepperDash.Core.Web
|
namespace PepperDash.Core.Web
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Web API server
|
||||||
|
/// </summary>
|
||||||
public class WebApiServer : IKeyName
|
public class WebApiServer : IKeyName
|
||||||
{
|
{
|
||||||
private const string SplusKey = "Uninitialized Web API Server";
|
private const string SplusKey = "Uninitialized Web API Server";
|
||||||
|
|
@ -18,7 +21,14 @@ namespace PepperDash.Core.Web
|
||||||
private HttpCwsServer _server;
|
private HttpCwsServer _server;
|
||||||
private readonly CCriticalSection _serverLock = new CCriticalSection();
|
private readonly CCriticalSection _serverLock = new CCriticalSection();
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Web API server key
|
||||||
|
/// </summary>
|
||||||
public string Key { get; private set; }
|
public string Key { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Web API server name
|
||||||
|
/// </summary>
|
||||||
public string Name { get; private set; }
|
public string Name { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue