Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What is the best way to validate WebMethod params .
I guess this not best practice:

[WebMethod]
        public string HelloWorld(String sayHi)
        {
            if (sayHi.Equals(""))
            {
                throw new Exception("User not provided");
            }
            return "String OK";
        }

Thanks

share|improve this question

1 Answer

up vote 0 down vote accepted

How about this:

You should use string not String.

[WebMethod]
public string HelloWorld(string sayHi)
{
   if (string.IsNullOrEmpty(sayHi)                
       throw new ArgumentException("User not provided");

   return "String OK";
}
share|improve this answer
Check out using the SoapException type: msdn.microsoft.com/en-us/library/aa480514.aspx – Christophe Geers Sep 13 '11 at 14:23
@Chris Kooken: Why? – Dave Ziegler Sep 13 '11 at 14:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.