ASP.NET Core SignalR.NET 客户端ASP.NET Core SignalR .NET Client

本文内容

利用 ASP.NET Core SignalR .NET 客户端库,你可以从 .NET 应用与 SignalR 中心通信。

查看或下载示例代码如何下载

这篇文章中的代码示例是使用 ASP.NET Core SignalR.NET 客户端的 WPF 应用。

安装 SignalR .NET 客户端包Install the SignalR .NET client package

AspNetCore包是 .net 客户端连接到 SignalR 中心所必需的。

若要安装客户端库,请在 "包管理器控制台" 窗口中运行以下命令:

  1. Install-Package Microsoft.AspNetCore.SignalR.Client

若要安装客户端库,请在命令 shell 中运行以下命令:

  1. dotnet add package Microsoft.AspNetCore.SignalR.Client

连接到中心Connect to a hub

若要建立连接,请创建 HubConnectionBuilder 并调用 Build在建立连接时,可以配置中心 URL、协议、传输类型、日志级别、标头和其他选项。通过在 Build中插入任意 HubConnectionBuilder 方法来配置任何所需的选项。开始与 StartAsync的连接。

  1. using System;
  2. using System.Threading.Tasks;
  3. using System.Windows;
  4. using Microsoft.AspNetCore.SignalR.Client;
  5. namespace SignalRChatClient
  6. {
  7. public partial class MainWindow : Window
  8. {
  9. HubConnection connection;
  10. public MainWindow()
  11. {
  12. InitializeComponent();
  13. connection = new HubConnectionBuilder()
  14. .WithUrl("http://localhost:53353/ChatHub")
  15. .Build();
  16. connection.Closed += async (error) =>
  17. {
  18. await Task.Delay(new Random().Next(0,5) * 1000);
  19. await connection.StartAsync();
  20. };
  21. }
  22. private async void connectButton_Click(object sender, RoutedEventArgs e)
  23. {
  24. connection.On<string, string>("ReceiveMessage", (user, message) =>
  25. {
  26. this.Dispatcher.Invoke(() =>
  27. {
  28. var newMessage = $"{user}: {message}";
  29. messagesList.Items.Add(newMessage);
  30. });
  31. });
  32. try
  33. {
  34. await connection.StartAsync();
  35. messagesList.Items.Add("Connection started");
  36. connectButton.IsEnabled = false;
  37. sendButton.IsEnabled = true;
  38. }
  39. catch (Exception ex)
  40. {
  41. messagesList.Items.Add(ex.Message);
  42. }
  43. }
  44. private async void sendButton_Click(object sender, RoutedEventArgs e)
  45. {
  46. try
  47. {
  48. await connection.InvokeAsync("SendMessage",
  49. userTextBox.Text, messageTextBox.Text);
  50. }
  51. catch (Exception ex)
  52. {
  53. messagesList.Items.Add(ex.Message);
  54. }
  55. }
  56. }
  57. }

处理丢失的连接Handle lost connection

自动重新连接Automatically reconnect

可以将 HubConnection 配置为使用 HubConnectionBuilder上的 WithAutomaticReconnect 方法自动重新连接。默认情况下,它不会自动重新连接。

  1. HubConnection connection= new HubConnectionBuilder()
  2. .WithUrl(new Uri("http://127.0.0.1:5000/chatHub"))
  3. .WithAutomaticReconnect()
  4. .Build();

如果没有任何参数,WithAutomaticReconnect() 会将客户端配置为分别等待0、2、10和30秒,然后再尝试重新连接尝试。

在开始任何重新连接尝试之前,HubConnection 将转换为 HubConnectionState.Reconnecting 状态,并激发 Reconnecting 事件。这为用户提供警告连接已丢失并禁用 UI 元素的机会。非交互式应用可以开始排队或删除消息。

  1. connection.Reconnecting += error =>
  2. {
  3. Debug.Assert(connection.State == HubConnectionState.Reconnecting);
  4. // Notify users the connection was lost and the client is reconnecting.
  5. // Start queuing or dropping messages.
  6. return Task.CompletedTask;
  7. };

如果客户端在其前四次尝试内成功重新连接,则 HubConnection 将转换回 Connected 状态,并激发 Reconnected 事件。这为用户提供了通知用户已重新建立连接并取消排队消息的排队的机会。

由于连接完全是服务器的新内容,因此向 Reconnected 事件处理程序提供了一个新的 ConnectionId

警告

如果 HubConnection 配置为跳过协商,则 Reconnected 事件处理程序的 connectionId 参数将为 null。

  1. connection.Reconnected += connectionId =>
  2. {
  3. Debug.Assert(connection.State == HubConnectionState.Connected);
  4. // Notify users the connection was reestablished.
  5. // Start dequeuing messages queued while reconnecting if any.
  6. return Task.CompletedTask;
  7. };

WithAutomaticReconnect() 不会将 HubConnection 配置为重试初始启动失败,因此,需要手动处理启动失败:

  1. public static async Task<bool> ConnectWithRetryAsync(HubConnection connection, CancellationToken token)
  2. {
  3. // Keep trying to until we can start or the token is canceled.
  4. while (true)
  5. {
  6. try
  7. {
  8. await connection.StartAsync(token);
  9. Debug.Assert(connection.State == HubConnectionState.Connected);
  10. return true;
  11. }
  12. catch when (token.IsCancellationRequested)
  13. {
  14. return false;
  15. }
  16. catch
  17. {
  18. // Failed to connect, trying again in 5000 ms.
  19. Debug.Assert(connection.State == HubConnectionState.Disconnected);
  20. await Task.Delay(5000);
  21. }
  22. }
  23. }

如果客户端在其前四次尝试中未成功重新连接,则 HubConnection 将转换为 Disconnected 状态,并激发 Closed 事件。这为尝试手动重新启动连接或通知用户连接永久丢失有机会。

  1. connection.Closed += error =>
  2. {
  3. Debug.Assert(connection.State == HubConnectionState.Disconnected);
  4. // Notify users the connection has been closed or manually try to restart the connection.
  5. return Task.CompletedTask;
  6. };

为了在断开连接或更改重新连接时间安排之前配置自定义的重新连接尝试次数,WithAutomaticReconnect 接受一个数字数组,表示在开始每次重新连接尝试之前等待的延迟(以毫秒为单位)。

  1. HubConnection connection= new HubConnectionBuilder()
  2. .WithUrl(new Uri("http://127.0.0.1:5000/chatHub"))
  3. .WithAutomaticReconnect(new[] { TimeSpan.Zero, TimeSpan.Zero, TimeSpan.FromSeconds(10) })
  4. .Build();
  5. // .WithAutomaticReconnect(new[] { TimeSpan.Zero, TimeSpan.FromSeconds(2), TimeSpan.FromSeconds(10), TimeSpan.FromSeconds(30) }) yields the default behavior.

前面的示例将 HubConnection 配置为在连接丢失后立即开始尝试重新连接。这也适用于默认配置。

如果第一次重新连接尝试失败,则第二次重新连接尝试还会立即启动,而不是等待2秒,就像在默认配置中一样。

如果第二次重新连接尝试失败,则第三次重新连接尝试将在10秒内启动,这与默认配置相同。

然后,在第三次重新连接尝试失败后,自定义行为将再次从默认行为与其分离。在默认配置中,将在另一个30秒内再次尝试重新连接。

如果需要更好地控制计时和自动重新连接尝试的次数,WithAutomaticReconnect 接受一个实现 IRetryPolicy 接口的对象,该对象具有名为 NextRetryDelay的单个方法。

NextRetryDelay 采用 RetryContext类型的单个自变量。RetryContext 具有三个属性: PreviousRetryCountElapsedTimeRetryReason,分别为 longTimeSpanException第一次重新连接尝试之前,PreviousRetryCountElapsedTime 均为零,RetryReason 将是导致连接丢失的异常。每次重试失败后,PreviousRetryCount 会递增1,ElapsedTime 将更新以反映到目前为止所用的时间量,RetryReason 将是导致上次重新连接尝试失败的异常。

NextRetryDelay 必须返回一个 TimeSpan,表示在下一次重新连接尝试之前等待的时间,或 null 如果 HubConnection 应停止重新连接。

  1. public class RandomRetryPolicy : IRetryPolicy
  2. {
  3. private readonly Random _random = new Random();
  4. public TimeSpan? NextRetryDelay(RetryContext retryContext)
  5. {
  6. // If we've been reconnecting for less than 60 seconds so far,
  7. // wait between 0 and 10 seconds before the next reconnect attempt.
  8. if (retryContext.ElapsedTime < TimeSpan.FromSeconds(60))
  9. {
  10. return TimeSpan.FromSeconds(_random.NextDouble() * 10);
  11. }
  12. else
  13. {
  14. // If we've been reconnecting for more than 60 seconds so far, stop reconnecting.
  15. return null;
  16. }
  17. }
  18. }
  1. HubConnection connection = new HubConnectionBuilder()
  2. .WithUrl(new Uri("http://127.0.0.1:5000/chatHub"))
  3. .WithAutomaticReconnect(new RandomRetryPolicy())
  4. .Build();

或者,你可以编写将手动重新连接客户端的代码,如手动重新连接中所示。

手动重新连接Manually reconnect

警告

在3.0 之前,SignalR 的 .NET 客户端不会自动重新连接。必须编写代码将手动重新连接你的客户端。

使用 Closed 事件来响应丢失的连接。例如,你可能需要自动重新连接。

Closed 事件需要一个返回 Task的委托,该委托允许异步代码在不使用 async void的情况下运行。若要在同步运行的 Closed 事件处理程序中满足委托签名,请返回 Task.CompletedTask

  1. connection.Closed += (error) => {
  2. // Do your close logic.
  3. return Task.CompletedTask;
  4. };

异步支持的主要原因是,可以重启连接。启动连接是一种异步操作。

在重启连接的 Closed 处理程序中,考虑等待一些随机延迟以防止服务器过载,如以下示例中所示:

  1. connection.Closed += async (error) =>
  2. {
  3. await Task.Delay(new Random().Next(0,5) * 1000);
  4. await connection.StartAsync();
  5. };

从客户端调用集线器方法Call hub methods from client

InvokeAsync 在集线器上调用方法。将 hub 方法名称和在 hub 方法中定义的所有参数传递到 InvokeAsync。 SignalR 是异步的,因此在进行调用时使用 asyncawait

  1. await connection.InvokeAsync("SendMessage",
  2. userTextBox.Text, messageTextBox.Text);

InvokeAsync 方法返回一个在服务器方法返回时完成的 Task返回值(如果有)作为 Task的结果提供。服务器上的方法所引发的任何异常都会产生出错的 Task使用 await 语法等待服务器方法完成,并 try…catch 语法来处理错误。

SendAsync 方法返回一个在消息已发送到服务器时完成的 Task不会提供返回值,因为此 Task 不会等待服务器方法完成。发送消息时,在客户端上引发的任何异常都会产生出错的 Task使用 awaittry…catch 语法处理发送错误。

备注

如果在无服务器模式下使用 Azure SignalR 服务,则无法从客户端调用集线器方法。有关详细信息,请参阅SignalR 服务文档

从集线器调用客户端方法Call client methods from hub

定义集线器在生成之后但在启动连接之前 connection.On 调用的方法。

  1. connection.On<string, string>("ReceiveMessage", (user, message) =>
  2. {
  3. this.Dispatcher.Invoke(() =>
  4. {
  5. var newMessage = $"{user}: {message}";
  6. messagesList.Items.Add(newMessage);
  7. });
  8. });

当服务器端代码使用 SendAsync 方法调用时,connection.On 中的前面的代码将运行。

  1. public async Task SendMessage(string user, string message)
  2. {
  3. await Clients.All.SendAsync("ReceiveMessage", user,message);
  4. }

错误处理和日志记录Error handling and logging

使用 try-catch 语句处理错误。检查 Exception 对象,以确定在发生错误之后要执行的适当操作。

  1. try
  2. {
  3. await connection.InvokeAsync("SendMessage",
  4. userTextBox.Text, messageTextBox.Text);
  5. }
  6. catch (Exception ex)
  7. {
  8. messagesList.Items.Add(ex.Message);
  9. }

其他资源Additional resources