Skip to content

Instantly share code, notes, and snippets.

@btompkins
Created December 14, 2012 02:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save btompkins/4281916 to your computer and use it in GitHub Desktop.
Save btompkins/4281916 to your computer and use it in GitHub Desktop.
[ServiceContract]
public class ContactsResource
{
private static int nextId = 1;
[WebInvoke(UriTemplate = "", Method = "POST")]
public JsonValue Post(JsonValue contact)
{
var postedContact = (dynamic)contact;
var contactResponse = (dynamic)new JsonObject();
contactResponse.Name = postedContact.Name;
contactResponse.ContactId = nextId++;
return contactResponse;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment