|
Calling methods on DataContracts Hi,
I have this requirement that a web service be used to return an object
that the client can call methods on. For e.g:
WebServiceClient c = new WebServiceClient();
SomeObject o = c.GetObject();
o.DoSomething();
o.Save();
Is this possible with current state of WCF? If so, how?
Thanks! |