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 fd98a33 commit 458941bCopy full SHA for 458941b
src/DefaultBuilder/src/ForwardedHeadersOptionsSetup.cs
@@ -56,7 +56,7 @@ public void Configure(ForwardedHeadersOptions options)
56
var knownProxies = _configuration["ForwardedHeaders_KnownProxies"]?.Split(',', StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries) ?? [];
57
foreach (var proxy in knownProxies)
58
{
59
- options.KnownProxies.Add(IPAddress.Parse(proxy));
+ options.KnownProxies.Add(System.Net.IPAddress.Parse(proxy));
60
}
61
62
0 commit comments