Implemented interface member:
method
Build
Microsoft.AspNetCore.SignalR.Client.IHubConnectionBuilder.Build()
11 references to Build
Microsoft.AspNetCore.SignalR.Client.FunctionalTests (1)
HubConnectionTests.cs (1)
64return hubConnectionBuilder.Build();
Microsoft.AspNetCore.SignalR.Client.Tests (7)
HubConnectionBuilderTests.cs (7)
22var ex = Assert.Throws<InvalidOperationException>(() => new HubConnectionBuilder().Build()); 32var ex = Assert.Throws<InvalidOperationException>(() => builder.Build()); 67Assert.NotNull(builder.Build()); 69var ex = Assert.Throws<InvalidOperationException>(() => builder.Build()); 89var connection = builder.Build(); 102var connection = builder.Build(); 117var connection = builder.Build();
Microsoft.AspNetCore.SignalR.Microbenchmarks (3)
HubConnectionReceiveBenchmark.cs (1)
87_hubConnection = hubConnectionBuilder.Build();
HubConnectionSendBenchmark.cs (1)
67_hubConnection = hubConnectionBuilder.Build();
HubConnectionStartBenchmark.cs (1)
53_hubConnection = hubConnectionBuilder.Build();