我正在创建一个HttpResponseMessage
对象并将其发送回调用者。我也传入一个Dictionary<string,object>
.
return HttpContext.Current.Request.CreateResponse(httpStatusCode.Ok, mydict);
调用者如何访问他们的字典?他们取回了HttpResponseMessage
类型,但试图读取它上面的Content
对象并没有产生任何像字典一样的东西。
我正在创建一个HttpResponseMessage
对象并将其发送回调用者。我也传入一个Dictionary<string,object>
.
return HttpContext.Current.Request.CreateResponse(httpStatusCode.Ok, mydict);
调用者如何访问他们的字典?他们取回了HttpResponseMessage
类型,但试图读取它上面的Content
对象并没有产生任何像字典一样的东西。