40 lines
1022 B
C#
40 lines
1022 B
C#
|
|
namespace JiShe.IOT
|
||
|
|
{
|
||
|
|
public static class IOTHttpApiHostConst
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 跨域策略名
|
||
|
|
/// </summary>
|
||
|
|
public const string DefaultCorsPolicyName = "Default";
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Cookies名称
|
||
|
|
/// </summary>
|
||
|
|
public const string DefaultCookieName = "JiShe.IOT.Http.Api";
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// SwaggerUi 端点
|
||
|
|
/// </summary>
|
||
|
|
public const string SwaggerUiEndPoint = "/swagger";
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Hangfire 端点
|
||
|
|
/// </summary>
|
||
|
|
public const string HangfireDashboardEndPoint = "/hangfire";
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// CAP 端点
|
||
|
|
/// </summary>
|
||
|
|
public const string CapDashboardEndPoint = "/cap";
|
||
|
|
|
||
|
|
|
||
|
|
public const string MoreEndPoint = "https://doc.cncore.club/";
|
||
|
|
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// HMiniprofiler端点
|
||
|
|
/// </summary>
|
||
|
|
public const string MiniprofilerEndPoint = "/profiler/results-index";
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|