Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created August 22, 2022 16:14
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 bjoerntx/d7da834bb760050a1dcc1b1d9457291f to your computer and use it in GitHub Desktop.
Save bjoerntx/d7da834bb760050a1dcc1b1d9457291f to your computer and use it in GitHub Desktop.
[Route("api/[controller]/{id}")]
[HttpGet]
public string Get([FromRoute] string id) {
ProcessingRequest request = new ProcessingRequest(id);
return request.RetrieveDocument();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment