[FunctionName("ApproveFile_Start")] | |
public static async Task HttpStart( | |
[BlobTrigger("files/{id}", Connection = "StorageAccountConnectionString")] Stream fileBlob, | |
string id, | |
[Table("metadata", "{id}", "{id}", Connection = "TableConnectionString")] FileMetadata metadata, | |
[Table("metadata", Connection = "TableConnectionString")] CloudTable metadataTable, | |
[DurableClient] IDurableOrchestrationClient starter, | |
ILogger log) | |
{ | |
// ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment