5
我裝飾的動作如下對象不是原始用於響應消息模型
[SwaggerResponse(HttpStatusCode.OK, "List of customers", typeof(List<CustomerDto>))]
[SwaggerResponse(HttpStatusCode.NotFound, Type = typeof(NotFoundException))]
該行模型顯示正確。
但是,在Repsonse消息下,我得到'對象不是原始'NotFound
。自定義異常從Exception
派生,實現ISerializable
,也有[Serializable]
和[DataContract()]
我怎麼能顯示實際數據類型的信息呢?
另外,如果我使用這些屬性來裝飾所有動作,我是否會在正常使用WebApi時發生性能下降?