/// <summary>
 /// Attempts to connect to the server and returns information about the connection status.
 /// </summary>
 /// <returns>True if the configuration is valid and the server is available, false otherwise.</returns>
 public async Task <HubConnectionStatus> CanConnect()
 {
     return(await m_HubConnection.CanConnect().ConfigureAwait(false));
 }