Cannot output to storage for a BlobTrigger function using dot net 7
Alan Rose
0
Reputation points
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)
Azure Functions
Azure Functions
An Azure service that provides an event-driven serverless compute platform.
Azure Blob Storage
Azure Blob Storage
An Azure service that stores unstructured data in the cloud as blobs.
Sign in to answer