5 implementations of LocalIpAddress
Microsoft.AspNetCore.Http (1)
Features\HttpConnectionFeature.cs (1)
17public IPAddress? LocalIpAddress { get; set; }
Microsoft.AspNetCore.Owin (1)
OwinFeatureCollection.cs (1)
205IPAddress IHttpConnectionFeature.LocalIpAddress
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
240IPAddress? IHttpConnectionFeature.LocalIpAddress
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.IHttpConnectionFeature.cs (1)
27IPAddress? IHttpConnectionFeature.LocalIpAddress
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
162IPAddress? IHttpConnectionFeature.LocalIpAddress
4 writes to LocalIpAddress
Microsoft.AspNetCore.Http (1)
Internal\DefaultConnectionInfo.cs (1)
71set { HttpConnectionFeature.LocalIpAddress = value; }
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
437{ OwinConstants.CommonKeys.LocalIpAddress, new FeatureMap<IHttpConnectionFeature>(feature => feature.LocalIpAddress.ToString(), (feature, value) => feature.LocalIpAddress = IPAddress.Parse(Convert.ToString(value, CultureInfo.InvariantCulture))) },
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
788((IHttpConnectionFeature)this).LocalIpAddress = localIPEndPoint.Address;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
543((IHttpConnectionFeature)this).LocalIpAddress = localIPEndPoint.Address;
5 references to LocalIpAddress
Microsoft.AspNetCore.Http (1)
Internal\DefaultConnectionInfo.cs (1)
70get { return HttpConnectionFeature.LocalIpAddress; }
Microsoft.AspNetCore.Http.Connections (1)
Internal\HttpConnectionDispatcher.cs (1)
744connectionFeature.LocalIpAddress = existingConnectionFeature.LocalIpAddress;
Microsoft.AspNetCore.Owin (1)
OwinEnvironment.cs (1)
437{ OwinConstants.CommonKeys.LocalIpAddress, new FeatureMap<IHttpConnectionFeature>(feature => feature.LocalIpAddress.ToString(), (feature, value) => feature.LocalIpAddress = IPAddress.Parse(Convert.ToString(value, CultureInfo.InvariantCulture))) },
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
777var localIp = ((IHttpConnectionFeature)this).LocalIpAddress;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
532var localIp = ((IHttpConnectionFeature)this).LocalIpAddress;