首先抱歉我的坏英国人:) 我想将数据放在actionContext.Response.Content中。如何在response.content中设置对象。这是我的代码
var c = actionContext.Request.RequestUri.ToString();
var d = ObjCache.Get(c);
if (d != null)
{
actionContext.Response = actionContext.Request.CreateResponse();
actionContext.Response.StatusCode = System.Net.HttpStatusCode.NotModified;
actionContext.Response.Content = new StringContent(d.ToString());
var ResultData= actionContext.Response.Content.ReadAsStringAsync().Result;
}
问题是actionContext.Response.Content.ReadAsStringAsync()。Result返回对象的类型作为字符串。但我想要对象本身。 提前谢谢