问题
Can my webmethod only return strings like I see in all the asp.net site examples?
回答1:
asp.net Webmethods can return any serializable data type.
回答2:
Assuming that this question is about the legacy ASMX web service technology, see Data Types Supported by XML Web Services Created Using ASP.NET.
Be sure to take note of where it says:
This topic is specific to a legacy technology. XML Web services and XML Web service clients should now be created using Windows Communication Foundation (WCF).
回答3:
As far as I know, you can pretty much return any .NET class, including anonymous types. I've returned custom objects representing my business entities, including generic collections of children entities. Guids, ints, strings, etc. Anything that can be serialized into a string basically.
来源:https://stackoverflow.com/questions/281978/what-are-all-the-valid-asp-net-webmethod-return-types