Skip to content

Instantly share code, notes, and snippets.

@btompkins
Created December 14, 2012 02:13
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/4281971 to your computer and use it in GitHub Desktop.
Save btompkins/4281971 to your computer and use it in GitHub Desktop.
[ServiceContract]
public class DocumentResource
{
[WebGet(UriTemplate="{name}")]
public Document Get(string name, HttpResponseMessage resp)
{
Document doc;
//foo has moved
if (name == "Foo")
{
resp.StatusCode = HttpStatusCode.MovedPermanently;
resp.Headers.Location = new Uri("http://someplace/Foo");
return null;
}
//find the document
return doc;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment