17 writes to _rightEndPoint
System.Net.Sockets (17)
System\Net\Sockets\Socket.cs (16)
159_rightEndPoint = new IPEndPoint( 167_rightEndPoint = new IPEndPoint( 175_rightEndPoint = new UnixDomainSocketEndPoint(buffer.Slice(0, bufferLength)); 825_rightEndPoint = endPointSnapshot is UnixDomainSocketEndPoint unixEndPoint ? 1380_rightEndPoint ??= remoteEP; 1462_rightEndPoint ??= remoteEP; 1716_rightEndPoint ??= endPointSnapshot; 1803_rightEndPoint ??= endPointSnapshot; 1880_rightEndPoint ??= endPointSnapshot; 2000_rightEndPoint ??= endPointSnapshot; 3295_rightEndPoint ??= endPointSnapshot; 3304_rightEndPoint = oldEndPoint; 3313_rightEndPoint = oldEndPoint; 3815socket._rightEndPoint = unixEndPoint.CreateUnboundEndPoint(); 3819socket._rightEndPoint = _rightEndPoint; 3861_rightEndPoint ??= _pendingConnectRightEndPoint;
System\Net\Sockets\Socket.Unix.cs (1)
264_rightEndPoint = source._rightEndPoint;
25 references to _rightEndPoint
System.Net.Sockets (25)
System\Net\Sockets\Socket.cs (19)
181if (_rightEndPoint != null) 303if (_rightEndPoint == null) 332SocketAddress socketAddress = new SocketAddress(_rightEndPoint.AddressFamily, size); 334_localEndPoint = _rightEndPoint.Create(socketAddress); 353if (_rightEndPoint == null || !_isConnected) 378SocketAddress socketAddress = new SocketAddress(_rightEndPoint.AddressFamily, size); 380_remoteEndPoint = _rightEndPoint.Create(socketAddress); 493return (_rightEndPoint != null); 1034if (_rightEndPoint == null) 1091Socket socket = CreateAcceptSocket(acceptedSocketHandle, _rightEndPoint.Create(socketAddress)); 1761if (_rightEndPoint == null) 2850if (_rightEndPoint == null) 2863if (SocketsTelemetry.Log.IsEnabled()) SocketsTelemetry.Log.AcceptStart(_rightEndPoint!); 3294EndPoint? oldEndPoint = _rightEndPoint; 3529if (_rightEndPoint is UnixDomainSocketEndPoint unixEndPoint && 3583IPEndPoint? ipEndPoint = _rightEndPoint as IPEndPoint; 3812if (_rightEndPoint is UnixDomainSocketEndPoint unixEndPoint && 3819socket._rightEndPoint = _rightEndPoint; 3981if (_rightEndPoint == null)
System\Net\Sockets\Socket.Unix.cs (2)
180if (acceptSocket._rightEndPoint != null && (!checkDisconnected || !acceptSocket._isDisconnected)) 264_rightEndPoint = source._rightEndPoint;
System\Net\Sockets\SocketAsyncEventArgs.cs (3)
581_acceptAddressBufferCount = 2 * (Socket.GetAddressSize(_currentSocket!._rightEndPoint!) + 16); 1006SocketAddress remoteSocketAddress = _currentSocket!._rightEndPoint!.Serialize(); 1012_acceptSocket = _currentSocket.UpdateAcceptSocket(_acceptSocket!, _currentSocket._rightEndPoint!.Create(remoteSocketAddress));
System\Net\Sockets\SocketAsyncEventArgs.Unix.cs (1)
353remoteSocketAddress.Size > 0 ? _currentSocket._rightEndPoint!.Create(remoteSocketAddress) : null);