Skip to content

Instantly share code, notes, and snippets.

@mattkruskamp
Created March 8, 2011 23:07
Show Gist options
  • Save mattkruskamp/861314 to your computer and use it in GitHub Desktop.
Save mattkruskamp/861314 to your computer and use it in GitHub Desktop.
WCF Rest Service
[ServiceContract]
[AspNetCompatibilityRequirements(
RequirementsMode = AspNetCompatibilityRequirementsMode.Allowed)]
[ServiceBehavior(InstanceContextMode = InstanceContextMode.PerCall)]
public class TestService
{
[Description("Test Description.")]
[WebGet(UriTemplate = "go")]
public string Test()
{
return "hi2u";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment