2

我在 C# ASP.NET Web 应用程序中有几个 WebMethods。我想改变他们所有人的行为来验证每个请求。想象一下下面的代码:

[WebMethod]
public static void DoSomething() 
{
    if (ValidateRequest())
    {
        HttpContext.Current.Response.StatusCode = 400;
        // do some other stuff
        return;
    }
    // rest of method
}

我当然注意到 ValidateRequest() 方法调用在我的大部分 WebMethods 中很常见。无论如何我可以将它连接起来,以便所有 WebMethods 自动具有相同的行为吗?我可以在方法中添加第二个属性来完成这个吗?

4

1 回答 1

0

在 Global.asax 文件的 Begin Request 中添加验证请求。

现在,您需要某种代码来检查是否应该验证请求。

我不确定如何在网络表单中执行此操作......但是,我要做的是:

使用 RequestPath 属性(如果它们与您的服务 URL 匹配,则获取方法和类名)

HttpContext.Current.Request.Path;

然后我会创建一个方法属性,也许会使用反射来查看是否应该验证请求。(见下面的链接)

http://msdn.microsoft.com/en-us/library/z919e8tw.aspx

这样,从现在开始,您只需要使用“[Validate]”属性标记您的方法,这一切都应该正常工作。

 public class Global : HttpApplication
    {
        protected void Application_BeginRequest(object sender, EventArgs e)
        {
          if(ShouldValidate() && !IsValidRequest()){
              //add your custom error status here perhaps
              Response.StatusCode = 400
              Response.StatusDescription = "Something Bad happened"
              HttpContext.Current.Response.End()
          }
        }
于 2012-07-21T20:05:41.850 回答