17 writes to _rightEndPoint
System.Net.Sockets (17)
System\Net\Sockets\Socket.cs (16)
158_rightEndPoint = new IPEndPoint( 166_rightEndPoint = new IPEndPoint( 172_rightEndPoint = new UnixDomainSocketEndPoint(buffer.Slice(0, bufferLength)); 791_rightEndPoint = endPointSnapshot is UnixDomainSocketEndPoint unixEndPoint ? 1303_rightEndPoint ??= remoteEP; 1375_rightEndPoint ??= remoteEP; 1605_rightEndPoint ??= endPointSnapshot; 1690_rightEndPoint ??= endPointSnapshot; 1765_rightEndPoint ??= endPointSnapshot; 1877_rightEndPoint ??= endPointSnapshot; 3120_rightEndPoint ??= endPointSnapshot; 3129_rightEndPoint = oldEndPoint; 3138_rightEndPoint = oldEndPoint; 3624socket._rightEndPoint = unixEndPoint.CreateUnboundEndPoint(); 3628socket._rightEndPoint = _rightEndPoint; 3670_rightEndPoint ??= _pendingConnectRightEndPoint;
System\Net\Sockets\Socket.Unix.cs (1)
273_rightEndPoint = source._rightEndPoint;
25 references to _rightEndPoint
System.Net.Sockets (25)
System\Net\Sockets\Socket.cs (19)
178if (_rightEndPoint != null) 294if (_rightEndPoint == null) 323SocketAddress socketAddress = new SocketAddress(_rightEndPoint.AddressFamily, size); 325_localEndPoint = _rightEndPoint.Create(socketAddress); 344if (_rightEndPoint == null || !_isConnected) 369SocketAddress socketAddress = new SocketAddress(_rightEndPoint.AddressFamily, size); 371_remoteEndPoint = _rightEndPoint.Create(socketAddress); 484return (_rightEndPoint != null); 992if (_rightEndPoint == null) 1049Socket socket = CreateAcceptSocket(acceptedSocketHandle, _rightEndPoint.Create(socketAddress)); 1648if (_rightEndPoint == null) 2685if (_rightEndPoint == null) 2698if (SocketsTelemetry.Log.IsEnabled()) SocketsTelemetry.Log.AcceptStart(_rightEndPoint!); 3119EndPoint? oldEndPoint = _rightEndPoint; 3354if (_rightEndPoint is UnixDomainSocketEndPoint unixEndPoint && 3406IPEndPoint? ipEndPoint = _rightEndPoint as IPEndPoint; 3621if (_rightEndPoint is UnixDomainSocketEndPoint unixEndPoint && 3628socket._rightEndPoint = _rightEndPoint; 3790if (_rightEndPoint == null)
System\Net\Sockets\Socket.Unix.cs (2)
189if (acceptSocket._rightEndPoint != null && (!checkDisconnected || !acceptSocket._isDisconnected)) 273_rightEndPoint = source._rightEndPoint;
System\Net\Sockets\SocketAsyncEventArgs.cs (3)
546_acceptAddressBufferCount = 2 * (Socket.GetAddressSize(_currentSocket!._rightEndPoint!) + 16); 869SocketAddress remoteSocketAddress = _currentSocket!._rightEndPoint!.Serialize(); 875_acceptSocket = _currentSocket.UpdateAcceptSocket(_acceptSocket!, _currentSocket._rightEndPoint!.Create(remoteSocketAddress));
System\Net\Sockets\SocketAsyncEventArgs.Unix.cs (1)
353_currentSocket._rightEndPoint!.Create(remoteSocketAddress));