3 references to RemoteIpAddress
Microsoft.AspNetCore.Owin (3)
OwinEnvironment.cs (1)
87{ OwinConstants.CommonKeys.RemoteIpAddress, new FeatureMap<IHttpConnectionFeature>(feature => feature.RemoteIpAddress.ToString(),
OwinFeatureCollection.cs (2)
201get { return IPAddress.Parse(Prop<string>(OwinConstants.CommonKeys.RemoteIpAddress)); } 202set { Prop(OwinConstants.CommonKeys.RemoteIpAddress, value.ToString()); }