Skip to content

Instantly share code, notes, and snippets.

@kennetham
Created May 5, 2018 05:06
Show Gist options
  • Save kennetham/685148130d5cb0c49f785c9ec8c455aa to your computer and use it in GitHub Desktop.
Save kennetham/685148130d5cb0c49f785c9ec8c455aa to your computer and use it in GitHub Desktop.
Blob Trigger - Queue Storage Output
public static void Run(Stream myBlob, string name, ICollector<string> outputQueueItem, TraceWriter log)
{
log.Info($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes");
log.Info($"C# Queue trigger function processed: {outputQueueItem}\n");
outputQueueItem.Add(name);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment