Skip to content
This repository was archived by the owner on Nov 20, 2018. It is now read-only.

Commit 86a2045

Browse files
committed
Remove IsLocal
1 parent 8349419 commit 86a2045

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

src/Microsoft.AspNet.Http.Abstractions/ConnectionInfo.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ public abstract class ConnectionInfo
1818

1919
public abstract int LocalPort { get; set; }
2020

21-
public abstract bool IsLocal { get; set; }
22-
2321
public abstract X509Certificate2 ClientCertificate { get; set; }
2422

2523
public abstract Task<X509Certificate2> GetClientCertificateAsync(CancellationToken cancellationToken = new CancellationToken());

src/Microsoft.AspNet.Http/DefaultConnectionInfo.cs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,6 @@ public override int LocalPort
5959
set { HttpConnectionFeature.LocalPort = value; }
6060
}
6161

62-
public override bool IsLocal
63-
{
64-
get { return HttpConnectionFeature.IsLocal; }
65-
set { HttpConnectionFeature.IsLocal = value; }
66-
}
67-
6862
public override X509Certificate2 ClientCertificate
6963
{
7064
get { return TlsConnectionFeature.ClientCertificate; }

0 commit comments

Comments
 (0)