3 references to RemotePort
Microsoft.AspNetCore.Owin (3)
OwinEnvironment.cs (1)
435
{ OwinConstants.CommonKeys.
RemotePort
, new FeatureMap<IHttpConnectionFeature>(feature => PortToString(feature.RemotePort), (feature, value) => feature.RemotePort = Convert.ToInt32(value, CultureInfo.InvariantCulture)) },
OwinFeatureCollection.cs (2)
213
get { return int.Parse(Prop<string>(OwinConstants.CommonKeys.
RemotePort
), CultureInfo.InvariantCulture); }
214
set { Prop(OwinConstants.CommonKeys.
RemotePort
, value.ToString(CultureInfo.InvariantCulture)); }