We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 46da578 + 3132d90 commit adaa8a4Copy full SHA for adaa8a4
Source/Libraries/GSF.TimeSeries/ServiceHostBase.cs
@@ -2102,7 +2102,7 @@ protected virtual void InvokeRequestHandler(ClientRequestInfo requestInfo)
2102
MethodInfo method = adapter
2103
.GetType()
2104
.GetMethods(BindingFlags.Public | BindingFlags.Static | BindingFlags.Instance | BindingFlags.IgnoreCase)
2105
- .Where(method => method.Name == command)
+ .Where(method => method.Name.Equals(command, StringComparison.OrdinalIgnoreCase))
2106
.Where(method => method.TryGetAttribute(out AdapterCommandAttribute _))
2107
.Select((method, index) => index == 0 ? method : throw new AmbiguousMatchException())
2108
.LastOrDefault();
0 commit comments