TODO:
Have you ever wanted to know which verbs to use when defining your OperationContract in a WCF service?
SOLUTION:
// Get an employee by ID - GET - employee/id ( [WebGet(UriTemplate = "/employee/{id}")] )
// Create a new employee - POST - employee [WebInvoke(Method = "POST", UriTemplate = "/employee/{xml}")] )
// Update an employee - PUT - employee/id [WebInvoke(Method = "PUT", UriTemplate = "/employee/{xml}")]
// Delete an employee - DELETE - employee/id [WebInvoke(Method = "DELETE", UriTemplate = "/employee/{id}")]
NOTES:
There are no notes on this topic