0

假设我有ApiController以下方法:

[HttpGet]
IEnumerable<MyType> GetSomeOfMyType( )
{
    return new MyType[ 10 ];
}

我想修改一个响应标头,我将如何转换此方法以允许它?

我猜我需要手动创建一个响应并将我的数据序列化到其中,但是如何?

谢谢。

4

3 回答 3

4

而不是返回IEnumerable,你应该HttpResponseMessage像下面的代码一样返回,然后你可以修改它Headers

[HttpGet]
public HttpResponseMessage GetSomeOfMyType( )
{
    var response = Request.CreateResponse(HttpStatusCode.OK, new MyType[10]);

    //Access to header: response.Headers       

    return response;
}
于 2012-10-11T15:30:08.543 回答
0

这是来自asp.net的示例:

public HttpResponseMessage PostProduct(Product item)
{
    item = repository.Add(item);
    var response = Request.CreateResponse<Product>(HttpStatusCode.Created, item);

    string uri = Url.Link("DefaultApi", new { id = item.Id });
    response.Headers.Location = new Uri(uri);
    return response;
}
于 2012-10-11T18:36:47.863 回答
-1
[HttpGet]
ActionResult GetSomeOfMyType( )
{
    ...
    HttpContext.Response.AppendHeader("your_header_name", "your_header_value");
    ...

    return Json(new MyType[ 10 ]);
}

假设您使用 JSON 进行序列化。否则,您可以使用ContentResult类和自定义序列化函数,如下所示:

[HttpGet]
ActionResult GetSomeOfMyType( )
{
    ...
    HttpContext.Response.AppendHeader("your_header_name", "your_header_value");
    ...

    return new ContentResult { 
        Content = YourSerializationFunction(new MyType[ 10 ]), 
        ContentEncoding = your_encoding, // optional
        ContentType = "your_content_type" // optional
    };
}
于 2012-10-11T15:18:19.360 回答