I have a C# ASP.NET WebAPI application with API documentation being automatically generated using Swashbuckle. I want to be able to omit certain methods fr
Add this on top of your Methods that you want to omit-
[ApiExplorerSettings(IgnoreApi=true)]