Remove IsLocal
This commit is contained in:
Родитель
8ff779778c
Коммит
1cae0695f7
|
@ -30,7 +30,6 @@ namespace HelloWorld
|
|||
|
||||
// Request
|
||||
// context.Request.ProtocolVersion
|
||||
// context.Request.IsLocal
|
||||
// context.Request.Headers
|
||||
// context.Request.Method
|
||||
// context.Request.Body
|
||||
|
|
|
@ -65,7 +65,6 @@ namespace Microsoft.AspNet.Server.WebListener
|
|||
private IPAddress _localIpAddress;
|
||||
private int? _remotePort;
|
||||
private int? _localPort;
|
||||
private bool? _isLocal;
|
||||
private string _requestId;
|
||||
private X509Certificate2 _clientCert;
|
||||
private ClaimsPrincipal _user;
|
||||
|
@ -219,19 +218,6 @@ namespace Microsoft.AspNet.Server.WebListener
|
|||
set { _scheme = value; }
|
||||
}
|
||||
|
||||
bool IHttpConnectionFeature.IsLocal
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_isLocal == null)
|
||||
{
|
||||
_isLocal = Request.IsLocal;
|
||||
}
|
||||
return _isLocal.Value;
|
||||
}
|
||||
set { _isLocal = value; }
|
||||
}
|
||||
|
||||
IPAddress IHttpConnectionFeature.LocalIpAddress
|
||||
{
|
||||
get
|
||||
|
|
|
@ -294,14 +294,6 @@ namespace Microsoft.Net.Http.Server
|
|||
get { return _path; }
|
||||
}
|
||||
|
||||
public bool IsLocal
|
||||
{
|
||||
get
|
||||
{
|
||||
return LocalEndPoint.GetIPAddress().Equals(RemoteEndPoint.GetIPAddress());
|
||||
}
|
||||
}
|
||||
|
||||
public bool IsSecureConnection
|
||||
{
|
||||
get
|
||||
|
|
|
@ -59,7 +59,6 @@ namespace Microsoft.AspNet.Server.WebListener
|
|||
Assert.NotEqual(0, connectionInfo.RemotePort);
|
||||
Assert.Equal("::1", connectionInfo.LocalIpAddress.ToString());
|
||||
Assert.NotEqual(0, connectionInfo.LocalPort);
|
||||
Assert.True(connectionInfo.IsLocal);
|
||||
|
||||
// Trace identifier
|
||||
var requestIdentifierFeature = httpContext.Features.Get<IHttpRequestIdentifierFeature>();
|
||||
|
|
|
@ -39,7 +39,6 @@ namespace Microsoft.Net.Http.Server
|
|||
Assert.NotEqual(0, request.RemotePort);
|
||||
Assert.Equal("::1", request.LocalIpAddress.ToString());
|
||||
Assert.NotEqual(0, request.LocalPort);
|
||||
Assert.True(request.IsLocal);
|
||||
|
||||
// Note: Response keys are validated in the ResponseTests
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче