Add System.Text.Json protocol to the SignalR functional tests (#9936)
This commit is contained in:
parent
a26c4e936b
commit
b0659f660b
|
|
@ -1674,7 +1674,8 @@ namespace Microsoft.AspNetCore.SignalR.Client.FunctionalTests
|
||||||
public static Dictionary<string, IHubProtocol> HubProtocols =>
|
public static Dictionary<string, IHubProtocol> HubProtocols =>
|
||||||
new Dictionary<string, IHubProtocol>
|
new Dictionary<string, IHubProtocol>
|
||||||
{
|
{
|
||||||
{ "json", new NewtonsoftJsonHubProtocol() },
|
{ "json", new JsonHubProtocol() },
|
||||||
|
{ "newtonsoft-json", new NewtonsoftJsonHubProtocol() },
|
||||||
{ "messagepack", new MessagePackHubProtocol() },
|
{ "messagepack", new MessagePackHubProtocol() },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue