[FEATURE REQ] Align ProcessSessionMessageEventArgs.DeadLetterMessageAsync overload parameter types #43498
Labels
Client
This issue points to a problem in the data-plane of the library.
customer-reported
Issues that are reported by GitHub users external to the Azure organization.
issue-addressed
Workflow: The Azure SDK team believes it to be addressed and ready to close.
question
The issue doesn't require a change to the product in order to be resolved. Most issues start as that
Service Bus
Library name
Azure.Messaging.ServiceBus
Please describe the feature.
ProcessSessionMessageEventArgs
has three methods which takeIDictionary<string, object> propertiesToModify
parameters:AbandonMessageAsync
,DeferMessageAsync
, andDeadLetterMessageAsync
.azure-sdk-for-net/sdk/servicebus/Azure.Messaging.ServiceBus/src/Processor/ProcessSessionMessageEventArgs.cs
Lines 199 to 202 in ff64938
However, it also has one
DeadLetterMessageAsync
overload which takes aDictionary<string, object>
.azure-sdk-for-net/sdk/servicebus/Azure.Messaging.ServiceBus/src/Processor/ProcessSessionMessageEventArgs.cs
Lines 213 to 218 in ff64938
Can this one be changed to take an
IDictionary<string, object>
, aligning it with the other three?The text was updated successfully, but these errors were encountered: