在ServiceStack中的元数据页面上提供响应模型示例JSON数据

时间:2014-02-26 22:41:25

标签: servicestack

任何人都知道一种方法,您可以提供一些示例数据,以便在ServiceStack的元数据页面上显示您的响应模型吗?

对于此响应模型

public class GetIncidentResponse
{
    public IEnumerable<Incident> Incidents { get; set; } 
}

我在元数据页面上看到了这个

HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{}

当我希望能够显示类似

的内容时
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{ "Filter example 1", "Filter example 2"}

1 个答案:

答案 0 :(得分:1)

@mythz评论解决了我的问题。将IEnemerable接口更改为IList工作。