[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