Skip to content

Releases: AndreasBieber/SignalR.Client.TypedHubProxy

3.1.0

01 Mar 19:11
Compare
Choose a tag to compare
bumped version to 3.1.0

3.0.1

23 Feb 11:57
Compare
Choose a tag to compare

Changes

  • made ctors of IHubProxy<T,T2> public

3.0.0

17 Dec 15:20
Compare
Choose a tag to compare

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

21 Oct 06:52
Compare
Choose a tag to compare

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

13 Oct 10:26
Compare
Choose a tag to compare

Improvements

  • Disposing the TypedHubProxy will now release the event subscriptions (except the IHubProxy)

2.1.0

24 Sep 14:37
Compare
Choose a tag to compare

Removed old mechanism to create a typed hubproxy

2.0.0

16 Sep 23:29
Compare
Choose a tag to compare

Features

  • TypedHubProxy completly rewritten (see documentation for more information)

1.0.2

11 Sep 10:32
Compare
Choose a tag to compare

Features

  • Library is now signed

1.0.1

11 Sep 10:22
Compare
Choose a tag to compare

Bugs Fixed

  • Fixed HubProxy generation (in case of a method with more than 1 parameter an exception was thrown)

1.0.0

10 Sep 23:56
Compare
Choose a tag to compare

Initial release