38 references to RemoteEndPoint
System (20)
net\System\Net\_FtpControlStream.cs (2)
125
if (!connection.ServerAddress.Equals(((IPEndPoint)connection.m_DataSocket.
RemoteEndPoint
).Address))
740
if (!ServerAddress.Equals(((IPEndPoint)m_DataSocket.
RemoteEndPoint
).Address))
net\System\Net\_PooledStream.cs (2)
162
socket.
RemoteEndPoint
));
208
SR.GetString(SR.net_log_socket_connected, socket.LocalEndPoint, socket.
RemoteEndPoint
));
net\System\Net\Sockets\Socket.cs (16)
1258
Logging.PrintInfo(Logging.Sockets, socket, SR.GetString(SR.net_log_socket_accepted, socket.
RemoteEndPoint
, socket.LocalEndPoint));
1320
GlobalLog.Print("Socket#" + ValidationHelper.HashString(this) + "::Send() SRC:" + ValidationHelper.ToString(LocalEndPoint) + " DST:" + ValidationHelper.ToString(
RemoteEndPoint
));
1431
GlobalLog.Print("Socket#" + ValidationHelper.HashString(this) + "::SendFile() SRC:" + ValidationHelper.ToString(LocalEndPoint) + " DST:" + ValidationHelper.ToString(
RemoteEndPoint
) + " fileName:" + fileName);
1540
GlobalLog.Print("Socket#" + ValidationHelper.HashString(this) + "::Send() SRC:" + ValidationHelper.ToString(LocalEndPoint) + " DST:" + ValidationHelper.ToString(
RemoteEndPoint
) + " size:" + size);
1769
GlobalLog.Print("Socket#" + ValidationHelper.HashString(this) + "::Receive() SRC:" + ValidationHelper.ToString(LocalEndPoint) + " DST:" + ValidationHelper.ToString(
RemoteEndPoint
) + " size:" + size);
1857
GlobalLog.Print("Socket#" + ValidationHelper.HashString(this) + "::Receive() SRC:" + ValidationHelper.ToString(LocalEndPoint) + " DST:" + ValidationHelper.ToString(
RemoteEndPoint
));
3505
GlobalLog.Print("Socket#" + ValidationHelper.HashString(this) + "::BeginSend() SRC:" + ValidationHelper.ToString(LocalEndPoint) + " DST:" + ValidationHelper.ToString(
RemoteEndPoint
) + " size:" + size.ToString());
3613
GlobalLog.Print("Socket#" + ValidationHelper.HashString(this) + "::DoBeginSendFile() SRC:" + ValidationHelper.ToString(LocalEndPoint) + " DST:" + ValidationHelper.ToString(
RemoteEndPoint
) + " fileName:" + fileName);
3742
GlobalLog.Print("Socket#" + ValidationHelper.HashString(this) + "::BeginSend() SRC:" + ValidationHelper.ToString(LocalEndPoint) + " DST:" + ValidationHelper.ToString(
RemoteEndPoint
) + " buffers:" + buffers);
5531
SR.GetString(SR.net_log_socket_accepted, acceptedSocket.
RemoteEndPoint
, acceptedSocket.LocalEndPoint));
5614
Logging.PrintInfo(Logging.Sockets, socket, SR.GetString(SR.net_log_socket_accepted, socket.
RemoteEndPoint
, socket.LocalEndPoint));
6167
Logging.PrintInfo(Logging.Sockets, this, SR.GetString(SR.net_log_socket_connected, LocalEndPoint,
RemoteEndPoint
));
6228
Logging.PrintInfo(Logging.Sockets, this, SR.GetString(SR.net_log_socket_connected, LocalEndPoint,
RemoteEndPoint
));
7383
GlobalLog.Print("Socket#" + ValidationHelper.HashString(this) + "::SetToConnected() now connected SRC:" + ValidationHelper.ToString(LocalEndPoint) + " DST:" + ValidationHelper.ToString(
RemoteEndPoint
));
9849
SR.GetString(SR.net_log_socket_accepted, m_AcceptSocket.
RemoteEndPoint
, m_AcceptSocket.LocalEndPoint));
9883
SR.GetString(SR.net_log_socket_connected, m_CurrentSocket.LocalEndPoint, m_CurrentSocket.
RemoteEndPoint
));
System.Runtime.Remoting (8)
channels\core\socketcache.cs (2)
151
_lkgIPEndPoint = socket.
RemoteEndPoint
;
164
_lkgIPEndPoint = socket.
RemoteEndPoint
;
channels\core\socketmanager.cs (3)
103
if (NetSocket == null || NetSocket.
RemoteEndPoint
== null) return true;
105
IPAddress remoteAddr = ((IPEndPoint)NetSocket.
RemoteEndPoint
).Address;
114
IPAddress remoteAddr = ((IPEndPoint)NetSocket.
RemoteEndPoint
).Address;
channels\http\httpstreams.cs (1)
646
headers[CommonTransportKeys.IPAddress] = ((IPEndPoint)NetSocket.
RemoteEndPoint
).Address;
channels\tcp\tcpserverchannel.cs (1)
405
bool authorized = _authorizeRemotingConnection.IsConnectingEndPointAuthorized(socket.
RemoteEndPoint
);
channels\tcp\tcpstreams.cs (1)
321
headers.IPAddress = ((IPEndPoint)NetSocket.
RemoteEndPoint
).Address;
System.ServiceModel (10)
System\ServiceModel\Channels\SocketConnection.cs (10)
151
remoteEndpoint = (IPEndPoint)socket.
RemoteEndPoint
;
407
new CommunicationException(SR.GetString(SR.SocketCloseReadReceivedData, socket.
RemoteEndPoint
)),
414
SR.GetString(SR.SocketCloseReadTimeout, socket.
RemoteEndPoint
, readFinTimeout), timeoutException),
436
new CommunicationException(SR.GetString(SR.SocketCloseReadReceivedData, thisPtr.socket.
RemoteEndPoint
)),
443
SR.GetString(SR.SocketCloseReadTimeout, thisPtr.socket.
RemoteEndPoint
, thisPtr.readFinTimeout),
506
new CommunicationException(SR.GetString(SR.SocketCloseReadReceivedData, socket.
RemoteEndPoint
)), ExceptionEventType);
512
SR.GetString(SR.SocketCloseReadTimeout, socket.
RemoteEndPoint
, readFinTimeout), timeoutException), ExceptionEventType);
624
if (socket.
RemoteEndPoint
!= null)
626
values["RemoteEndPoint"] = socket.
RemoteEndPoint
.ToString();
642
remoteIPEndpoint = this.remoteEndpoint ?? (IPEndPoint)this.socket.
RemoteEndPoint
;