page_type | languages | products | description | urlFragment | ||
---|---|---|---|---|---|---|
sample |
|
|
A C# sample to consume events from Azure Event Grid using an Azure relay hybrid connection listener. |
azure-event-grid-sample |
This contains a C# sample to consume events from Azure Event Grid using an Azure relay hybrid connection listener.
This sample demonstrates how to process event grid events which are delivered to an Azure relay hybrid connection destination.
The above sample uses the Event Grid data plane SDK (Microsoft.Azure.EventGrid) and Azure Relay SDK (Microsoft.Azure.Relay).
- .NET Core 6.0
- Create an Azure Event Grid topic: You will need to first create an Event Grid topic. The steps are described at https://docs.microsoft.com/en-us/azure/event-grid/scripts/event-grid-cli-create-custom-topic. Make a note of the topic details.
- Create an Azure Relay Hybrid connection. https://docs.microsoft.com/en-us/azure/service-bus-relay/relay-hybrid-connections-http-requests-dotnet-get-started. Make a note of the hybrid connection details.
- Create an event subscription on the topic(created in step#1) using hybrid connection as a destination (created in step#2) using following azure CLI commands
# Replace with relay hybrid connection details relayazuresubscriptionid=<relay-azure-subscription-id> relayrg=<relay-resource-group> relayname=<relay-namespace-name> hybridname=<hybrid-connection-name> # Replace with topic details topicazuresubscriptionid=<topic-azure-subscription-id> topicresourcegroup=<topic-resource-group> topicname=<topic-name> eventsubscriptionname=<new event subscription name> eventgridtopicid=$(az resource show -n $topicname -g $topicresourcegroup --resource-type Microsoft.EventGrid/topics --query id --output tsv) az account set --subscription $relayazuresubscriptionid relayid=$(az resource show --name $relayname --resource-group $relayrg --resource-type Microsoft.Relay/namespaces --query id --output tsv) hybridconnectionid="$relayid/hybridConnections/$hybridname" az account set --subscription $topicazuresubscriptionid az eventgrid event-subscription create \ --source-resource-id $eventgridtopicid \ --name $eventsubscriptionname \ --endpoint-type hybridconnection \ --endpoint $hybridconnectionid
- Visual Studio 2017 Version 15.5 or later.
Clone this repository onto your local machine. Compile the samples inside Visual Studio, the required Azure Messaging Event Grid SDK components will automatically be downloaded from nuget.org.
-
The following are the steps to run the HybridConnectionConsumer sample and see events received on hybrid connection listener:
a. Load HybridConnectionConsumer project in Visual Studio.
b. In Program.cs, replace the and with the relay connection string and hybrid connection name that you created in pre-requisites.
c. Run this application from Visual Studio to listen for Event Grid Events.
-
Use Event Grid publisher sample(https://github.com/Azure-Samples/event-grid-dotnet-publish-consume-events/tree/master/EventGridPublisher/EventGridPublisher) to publisher events to the topic that you created in pre-requisites.
-
Verify that you received the events in the HybridConnectionConsumer console.
(Any additional resources or related projects)