Microsoft.Azure.WebJobs.Extensions.EventHubs 6.3.5

Prefix Reserved
There is a newer version of this package available.
See the version list below for details.
dotnet add package Microsoft.Azure.WebJobs.Extensions.EventHubs --version 6.3.5
NuGet\Install-Package Microsoft.Azure.WebJobs.Extensions.EventHubs -Version 6.3.5
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version ofInstall-Package.
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.EventHubs" Version="6.3.5" />
For projects that supportPackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Microsoft.Azure.WebJobs.Extensions.EventHubs" Version="6.3.5" />
Directory.Packages.props
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.EventHubs" />
Project file
For projects that supportCentral Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Microsoft.Azure.WebJobs.Extensions.EventHubs --version 6.3.5
The NuGet Team does not provide support for this client. Please contact itsmaintainers for support.
#r "nuget: Microsoft.Azure.WebJobs.Extensions.EventHubs, 6.3.5"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Microsoft.Azure.WebJobs.Extensions.EventHubs&version=6.3.5
Install as a Cake Addin
#tool nuget:?package=Microsoft.Azure.WebJobs.Extensions.EventHubs&version=6.3.5
Install as a Cake Tool
The NuGet Team does not provide support for this client. Please contact itsmaintainers for support.

Azure WebJobs Event Hubs client library for .NET

This extension provides functionality for accessing Azure Event Hubs from an Azure Function.

Getting started

Install the package

Install the Event Hubs extension withNuGet:

dotnet add package Microsoft.Azure.WebJobs.Extensions.EventHubs

Prerequisites

  • Azure Subscription: To use Azure services, including Azure Event Hubs, you'll need a subscription. If you do not have an existing Azure account, you may sign up for afree trial or use yourVisual Studio Subscription benefits when youcreate an account.

  • Event Hubs namespace with an Event Hub: To interact with Azure Event Hubs, you'll also need to have a namespace and Event Hub available. If you are not familiar with creating Azure resources, you may wish to follow the step-by-step guide forcreating an Event Hub using the Azure portal. There, you can also find detailed instructions for using the Azure CLI, Azure PowerShell, or Azure Resource Manager (ARM) templates to create an Event Hub.

  • Azure Storage account with blob storage: To persist checkpoints as blobs in Azure Storage, you'll need to have an Azure Storage account with blobs available. If you are not familiar with Azure Storage accounts, you may wish to follow the step-by-step guide forcreating a storage account using the Azure portal. There, you can also find detailed instructions for using the Azure CLI, Azure PowerShell, or Azure Resource Manager (ARM) templates to create storage accounts.

Deploy button

Authenticate the Client

For the Event Hubs client library to interact with an Event Hub, it will need to understand how to connect and authorize with it. The easiest means for doing so is to use a connection string, which is created automatically when creating an Event Hubs namespace. If you aren't familiar with using connection strings with Event Hubs, you may wish to follow the step-by-step guide toget an Event Hubs connection string.

TheConnection property ofEventHubAttribute andEventHubTriggerAttribute is used to specify the configuration property that stores the connection string.

TheAzureWebJobsStorage connection string is used to preserve the processing checkpoint information.

For the local development use thelocal.settings.json file to store the connection string:

{  "Values": {    "AzureWebJobsStorage": "UseDevelopmentStorage=true",    "<connection_name>": "Endpoint=sb://<event_hubs_namespace>.servicebus.windows.net/;SharedAccessKeyName=RootManageSharedAccessKey;SharedAccessKey=Jya7Eh76HU92ibsxuk1ITN8CM8Bt76YLKf5ISjU3jZ8="  }}

When deployed use theapplication settings to set the connection string.

Identity-based authentication

If your environment hasmanaged identity enabled you can use it to authenticate the Event Hubs extension. Before doing so, you will need to ensure that permissions have been configured as described in theAzure Functions developer guide.

To use identity-based authentication provide the<connection_name>__fullyQualifiedNamespace configuration setting.

{  "Values": {    "AzureWebJobsStorage": "UseDevelopmentStorage=true",    "<connection_name>__fullyQualifiedNamespace": "{event_hubs_namespace}.servicebus.windows.net"  }}

Or in the case of deployed app set the same setting inapplication settings:

<connection_name>__fullyQualifiedNamespace={event_hubs_namespace}.servicebus.windows.net

More details about configuring an identity-based connection can be foundhere.

Key concepts

Event Hub Trigger

The Event Hub Trigger allows a function to be executed when a message is sent to an Event Hub.

Please follow theAzure Event Hubs trigger tutorial to learn more about Event Hub triggers.

Event Hub Output Binding

The Event Hub Output Binding allows a function to send Event Hub events.

Please follow theAzure Event Hubs output binding to learn more about Event Hub bindings.

Supported types

The following types are supported for trigger and output bindings:

  • EventData
  • string - value would be encoded using UTF8 encoding
  • BinaryData
  • byte[]
  • Custom model types will be JSON-serialized using Newtonsoft.Json
  • IAsyncCollector<T> of any of the above types for batch triggers
  • EventHubProducerClient for output bindings

Examples

Sending individual event

You can send individual events to an Event Hub by applying theEventHubAttribute the function return value. The return value can be ofstring orEventData type. A partition keys may not be specified when using a return value; to do so, you'll need to bind to theIAsyncCollector<EventData>, as shown inSending multiple events.

[FunctionName("BindingToReturnValue")][return: EventHub("<event_hub_name>", Connection = "<connection_name>")]public static string Run([TimerTrigger("0 */5 * * * *")] TimerInfo myTimer){    // This value would get stored in EventHub event body.    // The string would be UTF8 encoded    return $"C# Timer trigger function executed at: {DateTime.Now}";}

Sending multiple events

To send multiple events from a single Azure Function invocation you can apply theEventHubAttribute to theIAsyncCollector<string> orIAsyncCollector<EventData> parameter. Partition keys may only be used when binding toIAsyncCollector<EventData>.

[FunctionName("BindingToCollector")]public static async Task Run(    [TimerTrigger("0 */5 * * * *")] TimerInfo myTimer,    [EventHub("<event_hub_name>", Connection = "<connection_name>")] IAsyncCollector<EventData> collector){    // When no partition key is used, partitions will be assigned per-batch via round-robin.    await collector.AddAsync(new EventData($"Event 1 added at: {DateTime.Now}"));    await collector.AddAsync(new EventData($"Event 2 added at: {DateTime.Now}"));    // Using a partition key will help group events together; events with the same key    // will always be assigned to the same partition.    await collector.AddAsync(new EventData($"Event 3 added at: {DateTime.Now}"), "sample-key");    await collector.AddAsync(new EventData($"Event 4 added at: {DateTime.Now}"), "sample-key");}

Using binding to strongly-typed models

To use strongly-typed model classes with the EventHub binding apply theEventHubAttribute to the model parameter.

[FunctionName("TriggerSingleModel")]public static void Run(    [EventHubTrigger("<event_hub_name>", Connection = "<connection_name>")] Dog dog,    ILogger logger){    logger.LogInformation($"Who's a good dog? {dog.Name} is!");}

Sending multiple events using EventHubProducerClient

You can also bind to theEventHubProducerClient directly to have the most control over the event sending.

[FunctionName("BindingToProducerClient")]public static async Task Run(    [TimerTrigger("0 */5 * * * *")] TimerInfo myTimer,    [EventHub("<event_hub_name>", Connection = "<connection_name>")] EventHubProducerClient eventHubProducerClient){    // IAsyncCollector allows sending multiple events in a single function invocation    await eventHubProducerClient.SendAsync(new[]    {        new EventData($"Event 1 added at: {DateTime.Now}"),        new EventData($"Event 2 added at: {DateTime.Now}")    });}

Per-event triggers

To run a function every time an event is sent to Event Hub apply theEventHubTriggerAttribute to astring orEventData parameter.

[FunctionName("TriggerSingle")]public static void Run(    [EventHubTrigger("<event_hub_name>", Connection = "<connection_name>")] string eventBodyAsString,    ILogger logger){    logger.LogInformation($"C# function triggered to process a message: {eventBodyAsString}");}

Batch triggers

To run a function for a batch of received events apply theEventHubTriggerAttribute to astring[] orEventData[] parameter.

[FunctionName("TriggerBatch")]public static void Run(    [EventHubTrigger("<event_hub_name>", Connection = "<connection_name>")] EventData[] events,    ILogger logger){    foreach (var e in events)    {        logger.LogInformation($"C# function triggered to process a message: {e.EventBody}");        logger.LogInformation($"EnqueuedTime={e.EnqueuedTime}");    }}

Troubleshooting

Please refer toMonitor Azure Functions for troubleshooting guidance.

Next steps

Read theintroduction to Azure Functions orcreating an Azure Function guide.

Contributing

See ourCONTRIBUTING.md for details on building,testing, and contributing to this library.

This project welcomes contributions and suggestions. Most contributions requireyou to agree to a Contributor License Agreement (CLA) declaring that you havethe right to, and actually do, grant us the rights to use your contribution. Fordetails, visitcla.microsoft.com.

This project has adopted theMicrosoft Open Source Code of Conduct.For more information see theCode of Conduct FAQor contactopencode@microsoft.com with anyadditional questions or comments.

ProductCompatible and additional computed target framework versions.
.NETnet5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. 
.NET Corenetcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. 
.NET Standardnetstandard2.0 is compatible. netstandard2.1 was computed. 
.NET Frameworknet461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. 
MonoAndroidmonoandroid was computed. 
MonoMacmonomac was computed. 
MonoTouchmonotouch was computed. 
Tizentizen40 was computed. tizen60 was computed. 
Xamarin.iOSxamarinios was computed. 
Xamarin.Macxamarinmac was computed. 
Xamarin.TVOSxamarintvos was computed. 
Xamarin.WatchOSxamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more aboutTarget Frameworks and.NET Standard.

NuGet packages (7)

Showing the top 5 NuGet packages that depend on Microsoft.Azure.WebJobs.Extensions.EventHubs:

PackageDownloads
MassTransit.WebJobs.EventHubs

MassTransit Azure WebJobs Event Hubs support; MassTransit provides a developer-focused, modern platform for creating distributed applications without complexity.

Microsoft.Azure.Workflows.WebJobs.Extension

Extensions for running workflows in Azure Functions

RedQuick

Package Description

Amido.Stacks.Messaging.Azure.EventHub

Package Description

Beef.Events.EventHubs

Business Entity Execution Framework (Beef) Event Hubs framework.

GitHub repositories (11)

Showing the top 11 popular GitHub repositories that depend on Microsoft.Azure.WebJobs.Extensions.EventHubs:

RepositoryStars
MassTransit/MassTransit
Distributed Application Framework for .NET
Azure/azure-webjobs-sdk
Azure WebJobs SDK
Azure-Samples/saga-orchestration-serverless
An orchestration-based saga implementation reference in a serverless architecture
JamesRandall/FunctionMonkey
Write more elegant Azure Functions with less boilerplate, more consistency, and support for REST APIs. Docs can be found at https://functionmonkey.azurefromthetrenches.com
ProfessionalCSharp/MoreSamples
Additional code samples the book series Professional C#, Wrox Press
Azure-Samples/streaming-at-scale
How to implement a streaming at scale solution in Azure
microsoft/durabletask-netherite
A new engine for Durable Functions. https://microsoft.github.io/durabletask-netherite
solliancenet/tech-immersion-data-ai
Daniel-Krzyczkowski/MicrosoftAzure
Microsoft Azure code samples.
Azure-Samples/azure-digital-twins-unreal-integration
Sample project demonstrating the Unreal Engine plug-in for Azure Digital Twins
Azure-Samples/azure-sql-db-change-stream-debezium
SQL Server Change Stream sample using Debezium
VersionDownloads Last Updated
6.5.2 11,3246/17/2025
6.5.1 50,4564/9/2025
6.5.0 1,1084/8/2025
6.4.0-beta.1 4903/14/2025
6.3.5 1,018,1438/2/2024
6.3.4 7,8497/25/2024
6.3.3 106,1806/13/2024
6.3.2 348,9134/29/2024
6.3.1 84,4414/17/2024
6.3.0 15,1294/10/2024
6.2.0 297,3543/5/2024
6.1.0 35,5822/14/2024
6.0.2 402,89811/13/2023
6.0.1 326,66210/11/2023
6.0.0 80,6679/12/2023
5.5.0 287,7478/14/2023
5.4.0 481,3446/6/2023
5.3.0 333,1484/11/2023
5.2.0 188,1442/23/2023
5.1.2 1,088,4188/10/2022
5.1.1 886,9036/21/2022
5.1.0 459,1844/21/2022
5.0.1 231,6453/9/2022
5.0.0 820,49410/26/2021
5.0.0-beta.7 69,6227/9/2021
5.0.0-beta.6 44,8196/9/2021
5.0.0-beta.5 19,5945/18/2021
5.0.0-beta.4 17,7754/6/2021
5.0.0-beta.3 17,5803/11/2021
5.0.0-beta.2 18,6393/9/2021
5.0.0-beta.1 22,5242/10/2021
4.3.1 409,1792/15/2022
4.3.0 578,23210/26/2021
4.2.0 889,06412/11/2020
4.1.1 1,401,3932/5/2020
4.1.0 185,10510/31/2019
4.0.1 437,39210/1/2019
4.0.0 144,7999/19/2019
4.0.0-beta2 1,0858/5/2019
4.0.0-beta1 12,2475/14/2019
3.0.6 308,4467/23/2019
3.0.5 230,3215/3/2019
3.0.4 69,2773/29/2019
3.0.3 254,2993/7/2019
3.0.2 50,4501/25/2019
3.0.1 127,39910/17/2018
3.0.0 141,8349/19/2018
3.0.0-rc1 3,0829/14/2018
3.0.0-beta8 8,7918/30/2018
3.0.0-beta5 15,4173/26/2018
3.0.0-beta4 5,51811/28/2017
3.0.0-beta3 1,6909/15/2017
Downloads
Total13.0M
Current version1.0M
Per day average4.6K
About
Owners

© Microsoft Corporation. All rights reserved.

Share this package on FacebookShare this package on XUse the Atom feed to subscribe to new versions of Microsoft.Azure.WebJobs.Extensions.EventHubs