Skip to content

Instantly share code, notes, and snippets.

@xximjasonxx
Created August 12, 2020 01:53
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/a18c8f29de428959d46ab1c0acfcfe66 to your computer and use it in GitHub Desktop.
Save xximjasonxx/a18c8f29de428959d46ab1c0acfcfe66 to your computer and use it in GitHub Desktop.
[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