验证WebMethod参数的最佳方法是什么 我猜这不是最佳做法:
[WebMethod]
public string HelloWorld(String sayHi)
{
if (sayHi.Equals(""))
{
throw new Exception("User not provided");
}
return "String OK";
}
由于
答案 0 :(得分:0)
这个怎么样:
您应该使用string
而不是String
。
[WebMethod]
public string HelloWorld(string sayHi)
{
if (string.IsNullOrEmpty(sayHi)
throw new ArgumentException("User not provided");
return "String OK";
}