1 write to _endPoint
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
233
_endPoint
= endPoint ?? throw new ArgumentNullException(nameof(endPoint));
3 references to _endPoint
Microsoft.AspNetCore.SignalR.Client.Core (3)
HubConnection.cs (3)
244
_serviceName = (
_endPoint
is UriEndPoint e) ? e.Uri.AbsolutePath.Trim('/') : null;
489
var connection = await _connectionFactory.ConnectAsync(
_endPoint
, cancellationToken).ConfigureAwait(false);
1035
var initialUri = (
_endPoint
as UriEndPoint)?.Uri;