Microsoft.AspNet.SignalR.Hubs.HubMethodDispatcher.WrapVoidAction C# (CSharp) Method

WrapVoidAction() private static method

private static WrapVoidAction ( VoidHubMethodExecutor executor ) : HubMethodExecutor
executor VoidHubMethodExecutor
return HubMethodExecutor
        private static HubMethodExecutor WrapVoidAction(VoidHubMethodExecutor executor)
        {
            return delegate(IHub hub, object[] parameters)
            {
                executor(hub, parameters);
                return null;
            };
        }
    }