17 writes to _rightEndPoint
System.Net.Sockets (17)
System\Net\Sockets\Socket.cs (16)
158_rightEndPoint = new IPEndPoint( 166_rightEndPoint = new IPEndPoint( 174_rightEndPoint = new UnixDomainSocketEndPoint(buffer.Slice(0, bufferLength)); 824_rightEndPoint = endPointSnapshot is UnixDomainSocketEndPoint unixEndPoint ? 1379_rightEndPoint ??= remoteEP; 1461_rightEndPoint ??= remoteEP; 1715_rightEndPoint ??= endPointSnapshot; 1802_rightEndPoint ??= endPointSnapshot; 1879_rightEndPoint ??= endPointSnapshot; 1999_rightEndPoint ??= endPointSnapshot; 3294_rightEndPoint ??= endPointSnapshot; 3303_rightEndPoint = oldEndPoint; 3312_rightEndPoint = oldEndPoint; 3814socket._rightEndPoint = unixEndPoint.CreateUnboundEndPoint(); 3818socket._rightEndPoint = _rightEndPoint; 3860_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)
180if (_rightEndPoint != null) 302if (_rightEndPoint == null) 331SocketAddress socketAddress = new SocketAddress(_rightEndPoint.AddressFamily, size); 333_localEndPoint = _rightEndPoint.Create(socketAddress); 352if (_rightEndPoint == null || !_isConnected) 377SocketAddress socketAddress = new SocketAddress(_rightEndPoint.AddressFamily, size); 379_remoteEndPoint = _rightEndPoint.Create(socketAddress); 492return (_rightEndPoint != null); 1033if (_rightEndPoint == null) 1090Socket socket = CreateAcceptSocket(acceptedSocketHandle, _rightEndPoint.Create(socketAddress)); 1760if (_rightEndPoint == null) 2849if (_rightEndPoint == null) 2862if (SocketsTelemetry.Log.IsEnabled()) SocketsTelemetry.Log.AcceptStart(_rightEndPoint!); 3293EndPoint? oldEndPoint = _rightEndPoint; 3528if (_rightEndPoint is UnixDomainSocketEndPoint unixEndPoint && 3582IPEndPoint? ipEndPoint = _rightEndPoint as IPEndPoint; 3811if (_rightEndPoint is UnixDomainSocketEndPoint unixEndPoint && 3818socket._rightEndPoint = _rightEndPoint; 3980if (_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);