Releases: AndreasBieber/SignalR.Client.TypedHubProxy
Releases · AndreasBieber/SignalR.Client.TypedHubProxy
3.1.0
3.0.1
Changes
- made ctors of IHubProxy<T,T2> public
3.0.0
The strongly typed HubProxy is completely rewritten and there is no backward compatibility!
Please take a look at the readme.
BugFixes
- some minor fixes
Features
- CallAsync methods
- Observable HubProxy
2.2.0
Features
- Now it's possible to create conditional event subscriptions
Example:
myHub.SubscribeOn<ParamType>(
hub => hub.Method,
myParam => myParam.Id == 5,
myParam => { Console.WriteLine(myParam.Name); }
2.1.1
Improvements
- Disposing the TypedHubProxy will now release the event subscriptions (except the IHubProxy)
2.1.0
Removed old mechanism to create a typed hubproxy
2.0.0
Features
- TypedHubProxy completly rewritten (see documentation for more information)
1.0.2
Features
- Library is now signed
1.0.1
Bugs Fixed
- Fixed HubProxy generation (in case of a method with more than 1 parameter an exception was thrown)
1.0.0
Initial release