using Microsoft.AspNetCore.Mvc.ApiExplorer;
using System.Collections.Generic;
namespace Znyc.Recruitment.Admin.Commons.Extensions
{
///
/// API描述器扩展
///
public static class ApiDescriptionExtension
{
///
/// 获取区域名称
///
///
///
public static List GetAreaName(this ApiDescription description)
{
string areaName = description.ActionDescriptor.RouteValues["area"];
string controlName = description.ActionDescriptor.RouteValues["controller"];
List areaList = new List
{
controlName
};
if (!string.IsNullOrEmpty(areaName))
{
description.RelativePath = $"api/{areaName}/{controlName}/{description.RelativePath}";
}
return areaList;
}
}
}