Removing type name from hub method name (#63)
This commit is contained in:
parent
d0961fe28a
commit
2b918b8fe2
|
|
@ -168,7 +168,7 @@ namespace Microsoft.AspNetCore.SignalR
|
|||
|
||||
foreach (var methodInfo in type.GetTypeInfo().DeclaredMethods.Where(m => IsHubMethod(m)))
|
||||
{
|
||||
var methodName = type.FullName + "." + methodInfo.Name;
|
||||
var methodName = methodInfo.Name;
|
||||
|
||||
if (_callbacks.ContainsKey(methodName))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue