13 implementations of IHubProtocol
Microsoft.AspNetCore.Components.Server (1)
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (2)
Microsoft.AspNetCore.SignalR.Client.Tests (1)
Microsoft.AspNetCore.SignalR.Microbenchmarks (3)
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (1)
Microsoft.AspNetCore.SignalR.Tests (1)
Microsoft.AspNetCore.SignalR.Tests.Utils (1)
215 references to IHubProtocol
Microsoft.AspNetCore.Components.Server (1)
Microsoft.AspNetCore.Components.Server.Tests (2)
Microsoft.AspNetCore.SignalR.Client (1)
Microsoft.AspNetCore.SignalR.Client.Core (11)
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (62)
Microsoft.AspNetCore.SignalR.Client.Tests (12)
Microsoft.AspNetCore.SignalR.Common (7)
Microsoft.AspNetCore.SignalR.Common.Tests (15)
Microsoft.AspNetCore.SignalR.Core (24)
Microsoft.AspNetCore.SignalR.Microbenchmarks (15)
Microsoft.AspNetCore.SignalR.Protocols.Json (1)
Microsoft.AspNetCore.SignalR.Protocols.MessagePack (1)
Microsoft.AspNetCore.SignalR.Protocols.NewtonsoftJson (1)
Microsoft.AspNetCore.SignalR.Specification.Tests (3)
Microsoft.AspNetCore.SignalR.StackExchangeRedis (8)
Microsoft.AspNetCore.SignalR.StackExchangeRedis.Tests (26)
DefaultHubMessageSerializerTests.cs (9)
24var resolver = CreateHubProtocolResolver(new List<IHubProtocol> { new MessagePackHubProtocol(), new JsonHubProtocol() });
44var resolver = CreateHubProtocolResolver(new List<IHubProtocol> { new MessagePackHubProtocol(), new JsonHubProtocol() });
62private IHubProtocolResolver CreateHubProtocolResolver(List<IHubProtocol> hubProtocols)
71new List<IHubProtocol>() { new MessagePackHubProtocol() },
83new List<IHubProtocol>() { new MessagePackHubProtocol(), new JsonHubProtocol() },
100new List<IHubProtocol>() { new MessagePackHubProtocol(), new TestHubProtocol() },
112new List<IHubProtocol>(),
123public List<IHubProtocol> SupportedHubProtocols { get; }
125public ProtocolTestData(string name, List<IHubProtocol> supportedHubProtocols, int serializedCount, params byte[] encoded)
Microsoft.AspNetCore.SignalR.Tests (16)
Microsoft.AspNetCore.SignalR.Tests.Utils (9)