2 implementations of LocalIpAddress
Microsoft.AspNetCore.Http (1)
Features\HttpConnectionFeature.cs (1)
17public IPAddress? LocalIpAddress { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
162IPAddress? IHttpConnectionFeature.LocalIpAddress
1 write to LocalIpAddress
Microsoft.AspNetCore.Http (1)
Internal\DefaultConnectionInfo.cs (1)
71set { HttpConnectionFeature.LocalIpAddress = value; }
2 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;