5 implementations of RemoteIpAddress
Microsoft.AspNetCore.Http (1)
Features\HttpConnectionFeature.cs (1)
23public IPAddress? RemoteIpAddress { get; set; }
Microsoft.AspNetCore.Owin (1)
OwinFeatureCollection.cs (1)
199IPAddress IHttpConnectionFeature.RemoteIpAddress
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
258IPAddress? IHttpConnectionFeature.RemoteIpAddress
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.IHttpConnectionFeature.cs (1)
13IPAddress? IHttpConnectionFeature.RemoteIpAddress
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
156IPAddress? IHttpConnectionFeature.RemoteIpAddress
4 writes to RemoteIpAddress
Microsoft.AspNetCore.Http (1)
Internal\DefaultConnectionInfo.cs (1)
59set { HttpConnectionFeature.RemoteIpAddress = value; }
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
438{ OwinConstants.CommonKeys.RemoteIpAddress, new FeatureMap<IHttpConnectionFeature>(feature => feature.RemoteIpAddress.ToString(), (feature, value) => feature.RemoteIpAddress = IPAddress.Parse(Convert.ToString(value, CultureInfo.InvariantCulture))) },
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
809((IHttpConnectionFeature)this).RemoteIpAddress = remoteIPEndPoint.Address;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
564((IHttpConnectionFeature)this).RemoteIpAddress = remoteIPEndPoint.Address;
5 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;
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
438{ OwinConstants.CommonKeys.RemoteIpAddress, new FeatureMap<IHttpConnectionFeature>(feature => feature.RemoteIpAddress.ToString(), (feature, value) => feature.RemoteIpAddress = IPAddress.Parse(Convert.ToString(value, CultureInfo.InvariantCulture))) },
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
798var remoteIp = ((IHttpConnectionFeature)this).RemoteIpAddress;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
553var remoteIp = ((IHttpConnectionFeature)this).RemoteIpAddress;