aspnetcore/src/Microsoft.AspNet.HttpFeature/IHttpConnection.cs

13 lines
312 B
C#

using System.Net;
namespace Microsoft.AspNet.Interfaces
{
public interface IHttpConnection
{
IPAddress RemoteIpAddress { get; set; }
int RemotePort { get; set; }
IPAddress LocalIpAddress { get; set; }
int LocalPort { get; set; }
bool IsLocal { get; set; }
}
}