(Choose 1 answer)
A. const connection = new signalR. HubConnectionBuilder()withUrl("/chathub")withAutomaticReconnect()
build():
B. const connection new signalR. HubConnectionBuilder()withUrl("/chathub")withAutomaticReconnect();
create():
C. const connection = new signalR.HubConnectionBuilder()withUrl("/chathub")build()withAutomaticReconnect():
D. const connection = new signalR.HubConnectionBuilder()withAutomaticReconnect()
withUrl("/chathub")
build():
The JavaScript client for SignalR can be configured to automatically reconnect using the withAutomaticReconnect method on HubConnectionBuilder. Choose the correct option for making automatically reconnect.
ni
Exit 36