Tagged Questions
5
votes
4answers
4k views
How do you return a user defined type from a WCF service?
I have a WCF service hosted in IIS. The intention is for clients to make a call and receive a custom class that is defined in another project/dll. I have generated a service client using the ...
0
votes
2answers
768 views
ASMX Web Service - Return user defined class with properties
Hey,
I am trying to return a user defined class from a web method. The class has properties and/or methods.
Given the following web method:
[WebMethod]
public List<MenuItem> GetMenu()
{
...