В Swagger-Net у вас есть SwaggerResponse
, вы можете назвать его так:
[SwaggerResponse(400, "Bad request")]
public class SwaggerAnnotatedController : ApiController
{
[SwaggerResponseRemoveDefaults]
[SwaggerResponse(HttpStatusCode.Created, Type = typeof(int), MediaType = "text", Examples = 123)]
[SwaggerResponse(HttpStatusCode.BadRequest, "Invalid message", typeof(HttpError))]
public int Create(Message message)
{
throw new NotImplementedException();
}
[SwaggerResponse( 200, Type = typeof( IEnumerable<Message> ), TypeName = "Messages" )]
public IEnumerable<Message> GetAll()
{
throw new NotImplementedException();
}
Но у меня никогда не было необходимости в xmlnamespace, поэтому такой опции нет:
https://github.com/heldersepu/Swagger-Net/blob/master/Swagger.Net/Swagger/Annotations/SwaggerResponseAttribute.cs
но если вы можете предоставить точные сведения о том, как используется это пространство имен xml, я могу добавить его.