Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created September 6, 2020 01:47
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 xximjasonxx/f60533e007ea5204747056b3b56a4a37 to your computer and use it in GitHub Desktop.
Save xximjasonxx/f60533e007ea5204747056b3b56a4a37 to your computer and use it in GitHub Desktop.
[FunctionName("ProcessFile")]
public static async Task<bool> ProcessFile(
[ActivityTrigger] string fileId,
[Blob("files/{fileId}", FileAccess.Read, Connection = "StorageAccountConnectionString")] Stream fileBlob,
[Table("ocrdata", Connection = "TableConnectionString")] CloudTable ocrDataTable,
ILogger log)
{
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment