Skip to content

Instantly share code, notes, and snippets.

@glennblock
Created January 8, 2012 04:44
Show Gist options
  • Save glennblock/1577236 to your computer and use it in GitHub Desktop.
Save glennblock/1577236 to your computer and use it in GitHub Desktop.
Web API - Order XHTML
pubic class OrderApi
{
[WebGet(UriTemplate="{id}")]
public XmlDocument Get(int id) {
var order = //get the order
var document = //create an XmlDocument for the order
return document;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment