如何从ASP.NET WebMethod中获取完整的json数据?

时间:2015-10-28 21:31:43

标签: asp.net json vb.net asp.net-ajax

我目前正在尝试创建一个公共函数,它遍历已发布的json参数并将它们抛出到日志中。我没想弄乱反射,而是试图查看HttpContext.Current.Request.Form,但是在观察窗口中它是空的,即使参数显示在WebMethod中。

例如:

<System.Web.Services.WebMethod(BufferResponse:=False)>
    <System.Web.Script.Services.ScriptMethod()>
    Public Shared Function foo(ByVal fooData As FooType) As Returntype

        ProcessLog(HttpContext.Current.Request.Form)

        Return WebServiceHelper.ProcessFoo(fooData)
    End Function

0 个答案:

没有答案