We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4506a00 commit d0f3df8Copy full SHA for d0f3df8
projects/RabbitMQ.Client/client/api/ConnectionFactory.cs
@@ -31,6 +31,7 @@
31
32
using System;
33
using System.Collections.Generic;
34
+using System.Diagnostics.CodeAnalysis;
35
using System.Linq;
36
using System.Net.Security;
37
using System.Reflection;
@@ -759,6 +760,7 @@ private List<AmqpTcpEndpoint> LocalEndpoints()
759
760
return new List<AmqpTcpEndpoint> { Endpoint };
761
}
762
763
+ [return: NotNullIfNotNull(nameof(clientProvidedName))]
764
private static string? EnsureClientProvidedNameLength(string? clientProvidedName)
765
{
766
if (clientProvidedName != null)
0 commit comments