C# noob here.
I'm doing a simple wcf service RestAPI, so far so good...but my json string response isn't coming out the way i wanted.
Actual response: {"GetInfoResult":{"Name": "John"}}
Desired response: {"Name": "John"}
how do I remove GetInfoResult field?
Thanks