Skip to content

Instantly share code, notes, and snippets.

@vbilopav
Last active September 1, 2015 09:56
Show Gist options
  • Save vbilopav/20f503246386ea2c4778 to your computer and use it in GitHub Desktop.
Save vbilopav/20f503246386ea2c4778 to your computer and use it in GitHub Desktop.
[ServiceContract]
public interface IMyServiceSample
{
[OperationContract] //soap xml
[WebGet(ResponseFormat = WebMessageFormat.Json)] //json
bool DoSomeWork(int param1, string param2);
// …
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment