Skip to content

Instantly share code, notes, and snippets.

@bjoerntx
Created April 15, 2024 16:29
Show Gist options
  • Save bjoerntx/e15faa1d4cef9ea6ac0d547523adf904 to your computer and use it in GitHub Desktop.
Save bjoerntx/e15faa1d4cef9ea6ac0d547523adf904 to your computer and use it in GitHub Desktop.
[HttpGet]
public IActionResult LoadDocument()
{
// load the document from the file system
byte[] data = System.IO.File.ReadAllBytes("Documents/demo.tx");
// return the document as a base64 encoded string
return Content(Convert.ToBase64String(data));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment