Azure service bus 5

upgrading to version 5 and noticed some properties are deprecated?

Does it mean that it is automatically supported

public static void ConfigureEndpointDefaults(this AzureServiceBusTransport transport)
{
transport.SubscriptionNamingConvention = SubscriptionNamingConvention;
transport.SubscriptionRuleNamingConvention = SubscriptionRuleNamingConvention;
} static Func<Type, string> SubscriptionRuleNamingConvention => t => t.FullName!.Length <= 50 ? t.FullName : t.FullName.Substring(t.FullName.Length - 50); static Func<string, string> SubscriptionNamingConvention => n => n.Length <= 50 ? n : n.Substring(n.Length - 50);

Hi,

Our upgrade guide lists how to migrate these conventions, see Azure Service Bus Transport Upgrade Version 4 to 5 • Azure Service Bus Transport • Particular Docs

Regards
John