I have ASP.NET web service project. I must “switch off” (return void or null) the all methods in this service if current time is between 00:00 and 01:00. What is the best way to do it? may be global.asax file?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You can do that on Global.asax, on Application_BeginRequest, just check if is a webservice and then if not allow that hours you just cut it.