2 implementations of RemoteIpAddress
Microsoft.AspNetCore.Http (1)
Features\HttpConnectionFeature.cs (1)
23public IPAddress? RemoteIpAddress { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
156IPAddress? IHttpConnectionFeature.RemoteIpAddress
1 write to RemoteIpAddress
Microsoft.AspNetCore.Http (1)
Internal\DefaultConnectionInfo.cs (1)
59set { HttpConnectionFeature.RemoteIpAddress = value; }
2 references to RemoteIpAddress
Microsoft.AspNetCore.Http (1)
Internal\DefaultConnectionInfo.cs (1)
58get { return HttpConnectionFeature.RemoteIpAddress; }
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionDispatcher.cs (1)
746connectionFeature.RemoteIpAddress = existingConnectionFeature.RemoteIpAddress;