0

我使用一个Global.asax文件来公开我用 C# 实现的 Rest 服务。

RouteTable.Routes.Add(new ServiceRoute("MyServiceAPI", new WebServiceHostFactory(), typeof(MyServiceAPI)));

我可以从此文件中访问查询字符串 ( Request.queryString())

我的问题是如何将它从Global.asax.

非常感谢,

4

1 回答 1

0

如果您需要访问较低层中的查询字符串System.Web.HttpContext.Current.Request.Url通常会有所帮助。

于 2013-04-09T12:21:29.193 回答