Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JS client hubProxy.off( eventName) can't remove the event anymore after hubProxy.off( eventName, handler) called #1259

Closed
Xiaohongt opened this issue Jan 8, 2013 · 2 comments

Comments

@Xiaohongt
Copy link
Contributor

e.g. for below sample ( it doesn't matter what hub), on client the handle on foo2 still is not removed:

myHub.on('foo2', handler);
myHub.on('foo2', handler);
myHub.on('foo2', handler);
myHub.off('foo2', handler);
myHub.off("foo2");   // the first time call here works 
myHub.on('foo2', handler);
myHub.on('foo2', handler);
myHub.on('foo2', handler);
myHub.off('foo2', handler);
myHub.off("foo2");   // not work anymore, if call it again again,still not wotk
@DamianEdwards
Copy link
Member

This needs to be simplified down to a smaller repro so we can investigate.

NTaylorMullen added a commit that referenced this issue Feb 7, 2013
@aspnet-hello
Copy link

This issue has been closed as part of issue clean-up as described in https://blogs.msdn.microsoft.com/webdev/2018/09/17/the-future-of-asp-net-signalr/. If you're still encountering this problem, please feel free to re-open and comment to let us know! We're still interested in hearing from you, the backlog just got a little big and we had to do a bulk clean up to get back on top of things. Thanks for your continued feedback!

@aspnet-hello aspnet-hello removed this from the Backlog milestone Sep 20, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

3 participants