Skip to content
This repository was archived by the owner on Jun 11, 2026. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Microsoft.Azure.EventHubs/EventDataBatch.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ namespace Microsoft.Azure.EventHubs
using System.Collections.Generic;
using Microsoft.Azure.EventHubs.Amqp;

/// <summary>A helper class for creating a batch of EventData objects to be used for SendBatch or SendBatchAsync call.</summary>
/// <summary>A helper class for creating an IEnumerable<EventData> taking into account the max size limit of the IEnumerable<EventData>, so that it can be passed to the Send or SendAsync method of an EventHubClient to send the EventData objects as a batch.</summary>
public class EventDataBatch : IDisposable
{
const int MaxSizeLimit = 4 * 1024 * 1024;
Expand Down