I have a blob trigger function. I actually don't need the blob stream in this function ( i just get some meta properties off it to send a URL to twilio). I was thinking especially for some larger blob files, this would help performance if it knew not to send the stream to the trigger? I tried just removing the parameter hoping for some dynamic binding. This didn't work, it just serialized the blog into a string and put it into the next parameter - blob name string. Is there any other configuration available to make this work as desired?
Update: here is my method signature
[FunctionName("OutboundFax")]
public static void Run([BlobTrigger("faxdocuments/{name}", Connection = "faxdocumentsAppSetting")]Stream faxBlob, string name, ILogger log)
{}