INetworkServerChannelInfo

Overview

The interface defined to allow inspecting both local (server side) and remote (client side) endpoints of an IP-based client connection on the server. The reference to this interface can be obtained from any service method code. Read more.

Location


Properties


LocalEndPoint

Returns reference to the local (server) endpoint of the IP connection

 

property LocalEndPoint: IPEndPoint read;

 

IPEndPoint LocalEndPoint { get; }

 

ReadOnly Property LocalEndPoint() As IPEndPoint

RemoteEndPoint

Returns reference to the remote (client) endpoint of the IP connection

 

property RemoteEndPoint: IPEndPoint read;

 

IPEndPoint RemoteEndPoint { get; }

 

ReadOnly Property RemoteEndPoint() As IPEndPoint

ServerChannel    (declared in IServerChannelInfo)

Reference to the server channel component that received the request being processed.

 

property ServerChannel: ServerChannel read;

 

ServerChannel ServerChannel { get; }

 

ReadOnly Property ServerChannel() As ServerChannel