Ai đó đã đăng giải pháp lên github vì vậy tôi sẽ dán nó ở đây. Tất cả các khoản tín dụng cho anh ta. https://github.com/domaindrivendev/Swashbuckle/issues/153#issuecomment-213342771
Tạo đầu tiên một lớp thuộc tính
[AttributeUsage(AttributeTargets.Method | AttributeTargets.Class)]
public class HideInDocsAttribute : Attribute
{
}
Sau đó tạo lớp Lọc tài liệu
public class HideInDocsFilter : IDocumentFilter
{
public void Apply(SwaggerDocument swaggerDoc, SchemaRegistry schemaRegistry, IApiExplorer apiExplorer)
{
foreach (var apiDescription in apiExplorer.ApiDescriptions)
{
if (!apiDescription.ActionDescriptor.ControllerDescriptor.GetCustomAttributes<HideInDocsAttribute>().Any() && !apiDescription.ActionDescriptor.GetCustomAttributes<HideInDocsAttribute>().Any()) continue;
var route = "/" + apiDescription.Route.RouteTemplate.TrimEnd('/');
swaggerDoc.paths.Remove(route);
}
}
}
Sau đó, trong lớp Swagger Config, thêm bộ lọc tài liệu đó
public class SwaggerConfig
{
public static void Register(HttpConfiguration config)
{
var thisAssembly = typeof(SwaggerConfig).Assembly;
config
.EnableSwagger(c =>
{
...
c.DocumentFilter<HideInDocsFilter>();
...
})
.EnableSwaggerUi(c =>
{
...
});
}
}
Bước cuối cùng là thêm thuộc tính [HideInDocsAttribution] trên Trình điều khiển hoặc Phương thức mà bạn không muốn Swashbuckle tạo tài liệu.