11 overrides of RemoteEndPoint
InMemory.FunctionalTests (1)
src\Servers\Kestrel\shared\TransportConnection.cs (1)
28public override EndPoint? RemoteEndPoint { get; set; }
Microsoft.AspNetCore.Connections.Abstractions (1)
DefaultConnectionContext.cs (1)
96public override EndPoint? RemoteEndPoint { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Core (3)
HttpsConfigurationService.cs (1)
216public override EndPoint? RemoteEndPoint
Middleware\LoggingMultiplexedConnectionMiddleware.cs (2)
80public override EndPoint? RemoteEndPoint { get => _inner.RemoteEndPoint; set => _inner.RemoteEndPoint = value; } 126public override EndPoint? RemoteEndPoint { get => _inner.RemoteEndPoint; set => _inner.RemoteEndPoint = value; }
Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks (1)
src\Servers\Kestrel\shared\TransportConnection.cs (1)
28public override EndPoint? RemoteEndPoint { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes (1)
src\Servers\Kestrel\shared\TransportConnection.cs (1)
28public override EndPoint? RemoteEndPoint { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Transport.Quic (2)
src\Servers\Kestrel\shared\TransportConnection.cs (1)
28public override EndPoint? RemoteEndPoint { get; set; }
src\Servers\Kestrel\shared\TransportMultiplexedConnection.cs (1)
22public override EndPoint? RemoteEndPoint { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets (1)
src\Servers\Kestrel\shared\TransportConnection.cs (1)
28public override EndPoint? RemoteEndPoint { get; set; }
Microsoft.AspNetCore.SignalR.Client.Tests (1)
HubConnectionTests.Reconnect.cs (1)
1182public override EndPoint RemoteEndPoint { get => _inner.RemoteEndPoint; set => _inner.RemoteEndPoint = value; }
9 writes to RemoteEndPoint
Microsoft.AspNetCore.Http.Connections.Client (2)
HttpConnection.cs (2)
355RemoteEndPoint = new UriEndPoint(Utils.CreateEndPointUri(uri)); 411RemoteEndPoint = new UriEndPoint(Utils.CreateEndPointUri(uri));
Microsoft.AspNetCore.Server.Kestrel.Core (3)
HttpsConfigurationService.cs (1)
219set => _inner.RemoteEndPoint = value;
Middleware\LoggingMultiplexedConnectionMiddleware.cs (2)
80public override EndPoint? RemoteEndPoint { get => _inner.RemoteEndPoint; set => _inner.RemoteEndPoint = value; } 126public override EndPoint? RemoteEndPoint { get => _inner.RemoteEndPoint; set => _inner.RemoteEndPoint = value; }
Microsoft.AspNetCore.SignalR.Client.Tests (4)
HubConnectionTests.Helpers.cs (1)
26connection.RemoteEndPoint = endPoint;
HubConnectionTests.Reconnect.cs (1)
1182public override EndPoint RemoteEndPoint { get => _inner.RemoteEndPoint; set => _inner.RemoteEndPoint = value; }
HubConnectionTests.Tracing.cs (2)
147connection.RemoteEndPoint = new UriEndPoint(new Uri("http://example.net")); 187connection.RemoteEndPoint = new UriEndPoint(new Uri("http://example.net:5050"));
10 references to RemoteEndPoint
Microsoft.AspNetCore.Server.Kestrel.Core (7)
HttpsConfigurationService.cs (1)
218get => _inner.RemoteEndPoint;
Internal\Http3\Http3Connection.cs (1)
670streamContext.RemoteEndPoint as IPEndPoint,
Internal\Infrastructure\KestrelEventSource.cs (1)
67connection.RemoteEndPoint?.ToString());
Middleware\HttpConnectionMiddleware.cs (1)
45connectionContext.RemoteEndPoint as IPEndPoint,
Middleware\HttpMultiplexedConnectionMiddleware.cs (1)
44connectionContext.RemoteEndPoint as IPEndPoint,
Middleware\LoggingMultiplexedConnectionMiddleware.cs (2)
80public override EndPoint? RemoteEndPoint { get => _inner.RemoteEndPoint; set => _inner.RemoteEndPoint = value; } 126public override EndPoint? RemoteEndPoint { get => _inner.RemoteEndPoint; set => _inner.RemoteEndPoint = value; }
Microsoft.AspNetCore.SignalR.Client.Core (1)
HubConnection.cs (1)
2150ConnectionUrl = (connection.RemoteEndPoint is UriEndPoint ep) ? ep.Uri : null;
Microsoft.AspNetCore.SignalR.Client.Tests (2)
HttpConnectionTests.Negotiate.cs (1)
467connectedEndpoint = connection.RemoteEndPoint;
HubConnectionTests.Reconnect.cs (1)
1182public override EndPoint RemoteEndPoint { get => _inner.RemoteEndPoint; set => _inner.RemoteEndPoint = value; }