使用swagger配置。我知道它与docExpansion有关:list;但我不确定如何在SwaggerConfig文件中实例化该过程。
答案 0 :(得分:0)
旧问题,但如果它帮助其他人使用Google搜索者,请回答。
如果要在Swagger UI中设置操作的初始扩展,请在SwaggerConfig.cs文件中找到' EnableSwaggerUi'您可以在其中添加/取消注释docExpansion设置。
例如:
.EnableSwaggerUi(c =>
{
...
// Use this option to control how the Operation listing is displayed.
// It can be set to "None" (default), "List" (shows operations for each resource),
// or "Full" (fully expanded: shows operations and their details).
c.DocExpansion(DocExpansion.Full);
...