Azure Functions
An Azure service that provides an event-driven serverless compute platform.
2,787 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am having an issue creating a Blobtrigger function that takes the input byte array and write it to another azure container using dot net 7 (isolated worker process). Some packages suggested by examples will not import. Blob attribute not reckonised by compiler etc. any thoughts
example
public static void Run([BlobTrigger("mycontainer/{name}", Connection = "AzureWebJobsStorage")] byte[] inputBlob,
[Blob("mycontainer-output/{name}", FileAccess.Write, Connection = "AzureWebJobsStorage")] Stream outputBlob)