I use this BlobTrigger in c# to see, if there are changes in the blob. This sounds find, but how can I send this message from the Azure Function BlobTrigger to my Webapp? For example I want to display the "Name" of the blob, which was detected by the Azure Function on the html site (which is the WebApp) for Endusers. I did search but can't found the good answer. At the moment I can only output the message on the Console, but not sending this to any WebEndpoints. Would be great if someone can share his experiences.
[FunctionName("BlobTriggerCSharp")]
public static void Run([BlobTrigger("samples-workitems/{name}")] Stream myBlob, string name, ILogger log)
{
log.LogInformation($"C# Blob trigger function Processed blob\n Name:{name} \n Size: {myBlob.Length} Bytes");
}