3 references to LocalIpAddress
Microsoft.AspNetCore.Owin (3)
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))) },
OwinFeatureCollection.cs (2)
207get { return IPAddress.Parse(Prop<string>(OwinConstants.CommonKeys.LocalIpAddress)); } 208set { Prop(OwinConstants.CommonKeys.LocalIpAddress, value.ToString()); }