From 624a6aa39af47b3a7c4db35576f8383b81975b13 Mon Sep 17 00:00:00 2001 From: wadepickett Date: Wed, 17 Jan 2024 16:05:08 -0800 Subject: [PATCH] Moving IClient interface in ChatHubClientResultsStrongyTyped.cs --- .../Snippets/Hubs/ChatHubClientResultsStronglyTyped.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/signalr/hubs/samples/7.x/SignalRHubsSample/Snippets/Hubs/ChatHubClientResultsStronglyTyped.cs b/signalr/hubs/samples/7.x/SignalRHubsSample/Snippets/Hubs/ChatHubClientResultsStronglyTyped.cs index 2a579d6..e7d648b 100644 --- a/signalr/hubs/samples/7.x/SignalRHubsSample/Snippets/Hubs/ChatHubClientResultsStronglyTyped.cs +++ b/signalr/hubs/samples/7.x/SignalRHubsSample/Snippets/Hubs/ChatHubClientResultsStronglyTyped.cs @@ -3,13 +3,13 @@ using static System.Runtime.InteropServices.JavaScript.JSType; namespace SignalRHubsSample.Hubs; // +public interface IClient +{ + Task GetMessage(); +} + public class ChatHubClientResultsStronglyTyped : Hub { - public interface IClient - { - Task GetMessage(); - } - public class ChatHub : Hub { public async Task WaitForMessage(string connectionId)