Exemplo n.º 1
0
 public static void ConfigureNameShorteners(this TransportExtensions <AzureServiceBusTransport> transport)
 {
     transport.SubscriptionNameShortener(n => n.Length > MaxEntityName ? MD5DeterministicNameBuilder.Build(n) : n);
     transport.RuleNameShortener(n => n.Length > MaxEntityName ? MD5DeterministicNameBuilder.Build(n) : n);
 }