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 f359d61 commit 82199f0Copy full SHA for 82199f0
src/Serilog.Settings.Configuration/Settings/Configuration/ConfigurationReader.cs
@@ -380,6 +380,11 @@ internal static MethodInfo SelectConfigurationMethod(IEnumerable<MethodInfo> can
380
return selectedMethod;
381
}
382
383
+ static bool ParameterNameMatches(string actualParameterName, string suppliedName)
384
+ {
385
+ return suppliedName.Equals(actualParameterName, StringComparison.OrdinalIgnoreCase);
386
+ }
387
+
388
static bool ParameterNameMatches(string actualParameterName, IEnumerable<string> suppliedNames)
389
{
390
return suppliedNames.Any(s => ParameterNameMatches(actualParameterName, s));
0 commit comments