Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用一个Global.asax文件来公开我用 C# 实现的 Rest 服务。
Global.asax
RouteTable.Routes.Add(new ServiceRoute("MyServiceAPI", new WebServiceHostFactory(), typeof(MyServiceAPI)));
我可以从此文件中访问查询字符串 ( Request.queryString())
Request.queryString()
我的问题是如何将它从Global.asax.
非常感谢,
如果您需要访问较低层中的查询字符串System.Web.HttpContext.Current.Request.Url通常会有所帮助。
System.Web.HttpContext.Current.Request.Url