Removing type name from hub method name (#63)

This commit is contained in:
Pawel Kadluczka 2016-12-06 11:17:00 -08:00 committed by GitHub
parent d0961fe28a
commit 2b918b8fe2
1 changed files with 1 additions and 1 deletions

View File

@ -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))
{