我有 ASP.NET Web 服务项目。如果当前时间在 00:00 和 01:00 之间,我必须“关闭”(返回 void 或 null)此服务中的所有方法。最好的方法是什么?可能是 global.asax 文件?
问问题
836 次
1 回答
2
您可以在Global.asax上的Application_BeginRequest上执行此操作,只需检查是否是 Web 服务,然后如果不允许,您只需削减它的时间。
protected void Application_BeginRequest(Object sender, EventArgs e)
{
string cTheFile = HttpContext.Current.Request.Path;
string sExtentionOfThisFile = System.IO.Path.GetExtension(cTheFile);
// here you can check what file you wish to cut, ether by file, ether by extention
if (sExtentionOfThisFile.Equals(".asmx", StringComparison.InvariantCultureIgnoreCase))
{
// and here is the time limit.
if(DateTime.UtcNow.Hour >= 0 && DateTime.UtcNow.Hour <= 1)
{
HttpContext.Current.Response.TrySkipIisCustomErrors = true;
HttpContext.Current.Response.StatusCode = 403;
HttpContext.Current.Response.End();
return ;
}
}
}
于 2012-10-08T08:32:52.127 回答