在我的控制器中:
public class ProfileController : ApiController
{
public HttpResponseMessage PostCreateProfile (HubBasicProfile bp)
{
HttpResponseMessage result = null;
if (bp == null)
{
result = Request.CreateResponse(HttpStatusCode.InternalServerError, "Could not instantiate Profile with JSON provided.");
}
...
json 的自动反序列化以实例化 bp 对象发生在后台。
我想查看控制器接收到的 json,以尝试解决我们遇到的问题。此时,bp 始终为空。(当我说我想看看时,我想检查一下,看看反序列化器哪里出了问题。)
我查看了正在发送的 json,这似乎很好。
那么,谁能告诉我如何调试这个 json -> bp 对象进程?