-
Notifications
You must be signed in to change notification settings - Fork 5
Open
Labels
enhancementNew feature or requestNew feature or request
Description
The following code results in an obsolete error:
var cfg = new ServiceBusTriggeredEndpointConfiguration(EndpointName);The error is:
Error CS0619 'ServiceBusTriggeredEndpointConfiguration.ServiceBusTriggeredEndpointConfiguration(string)' is obsolete: 'The member currently throws a NotImplementedException. Will be removed in version 5.0.0.
This is the code that results in the obsolete:
Lines 35 to 38 in 40fa5bb
| [ObsoleteEx( | |
| TreatAsErrorFromVersion = "4", | |
| RemoveInVersion = "5")] | |
| public ServiceBusTriggeredEndpointConfiguration(string endpointName) |
No guidance is on the constructur but also not on the class itself:
Lines 9 to 10 in 40fa5bb
| public partial class ServiceBusTriggeredEndpointConfiguration |
After further analysis it seems this is the guidance to resolve it:
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request