You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.0 KiB
40 lines
1.0 KiB
namespace MyCompanyName.MyProjectName
|
|
{
|
|
public static class MyProjectNameHttpApiHostConst
|
|
{
|
|
/// <summary>
|
|
/// 跨域策略名
|
|
/// </summary>
|
|
public const string DefaultCorsPolicyName = "Default";
|
|
|
|
/// <summary>
|
|
/// Cookies名称
|
|
/// </summary>
|
|
public const string DefaultCookieName = "MyCompanyName.MyProjectName.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";
|
|
|
|
}
|
|
}
|