I'm experimenting with Azure and Azure Service Bus. I just want to push messages onto a queue and then have my C# azure function log that is sees the message. I'm struggling to get it working. I've created an azure account, created a resource group, created a service bus, downloaded storage explorer. I have the shared access policy 'RootManageSharedAccessKey' which has the 'managed' option checked in the portal.
So guessing what I do next? I've gone to azure functions and created a function, shown below, in the azure portal. When I open up storage explorer I'm not sure what option to use to connect to my azure instance with?
Any help? Thank you!
azure function
using System;
using System.Threading.Tasks;
public static void Run(string myQueueItem, ILogger log)
{
log.LogInformation($"C# ServiceBus queue trigger function processed message: {myQueueItem}");
}


