Skip to content

Commit 8bdb128

Browse files
committed
Updated EventHubTrigger code to fix incorrect case of property
1 parent ace80d4 commit 8bdb128

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Functions.Templates/Templates/EventHubTrigger-CSharp-5.x/EventHubTriggerCSharp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public static async Task Run([EventHubTrigger("eventHubNameValue", Connection =
2121
try
2222
{
2323
// Replace these two lines with your processing logic.
24-
log.LogInformation($"C# Event Hub trigger function processed a message: {eventData.eventBody}");
24+
log.LogInformation($"C# Event Hub trigger function processed a message: {eventData.EventBody}");
2525
await Task.Yield();
2626
}
2727
catch (Exception e)

0 commit comments

Comments
 (0)