[WebMethod]
public void Test()
{
throw new ArgumentNullException();
}
我想在 silverlight 客户端 webservice 调用完成方法中获取实际的异常(例如:ArgumentNullException)。我该如何实施?
[WebMethod]
public void Test()
{
throw new ArgumentNullException();
}
我想在 silverlight 客户端 webservice 调用完成方法中获取实际的异常(例如:ArgumentNullException)。我该如何实施?