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)); 826_rightEndPoint = endPointSnapshot is UnixDomainSocketEndPoint unixEndPoint ? 1383_rightEndPoint ??= remoteEP; 1465_rightEndPoint ??= remoteEP; 1719_rightEndPoint ??= endPointSnapshot; 1806_rightEndPoint ??= endPointSnapshot; 1883_rightEndPoint ??= endPointSnapshot; 2003_rightEndPoint ??= endPointSnapshot; 3298_rightEndPoint ??= endPointSnapshot; 3307_rightEndPoint = oldEndPoint; 3316_rightEndPoint = oldEndPoint; 3818socket._rightEndPoint = unixEndPoint.CreateUnboundEndPoint(); 3822socket._rightEndPoint = _rightEndPoint; 3864_rightEndPoint ??= _pendingConnectRightEndPoint;
System\Net\Sockets\Socket.Unix.cs (1)
279_rightEndPoint = source._rightEndPoint;
25 references to _rightEndPoint
System.Net.Sockets (25)
System\Net\Sockets\Socket.cs (19)
181if (_rightEndPoint != null) 304if (_rightEndPoint == null) 333SocketAddress socketAddress = new SocketAddress(_rightEndPoint.AddressFamily, size); 335_localEndPoint = _rightEndPoint.Create(socketAddress); 354if (_rightEndPoint == null || !_isConnected) 379SocketAddress socketAddress = new SocketAddress(_rightEndPoint.AddressFamily, size); 381_remoteEndPoint = _rightEndPoint.Create(socketAddress); 494return (_rightEndPoint != null); 1035if (_rightEndPoint == null) 1093EndPoint? remoteEndPoint = socketAddress.Size > 0 ? _rightEndPoint.Create(socketAddress) : null; 1764if (_rightEndPoint == null) 2853if (_rightEndPoint == null) 2866if (SocketsTelemetry.Log.IsEnabled()) SocketsTelemetry.Log.AcceptStart(_rightEndPoint!); 3297EndPoint? oldEndPoint = _rightEndPoint; 3532if (_rightEndPoint is UnixDomainSocketEndPoint unixEndPoint && 3586IPEndPoint? ipEndPoint = _rightEndPoint as IPEndPoint; 3815if (_rightEndPoint is UnixDomainSocketEndPoint unixEndPoint && 3822socket._rightEndPoint = _rightEndPoint; 3984if (_rightEndPoint == null)
System\Net\Sockets\Socket.Unix.cs (2)
195if (acceptSocket._rightEndPoint != null && (!checkDisconnected || !acceptSocket._isDisconnected)) 279_rightEndPoint = source._rightEndPoint;
System\Net\Sockets\SocketAsyncEventArgs.cs (3)
581_acceptAddressBufferCount = 2 * (Socket.GetAddressSize(_currentSocket!._rightEndPoint!) + 16); 1010SocketAddress remoteSocketAddress = _currentSocket!._rightEndPoint!.Serialize(); 1018? _currentSocket._rightEndPoint!.Create(remoteSocketAddress)
System\Net\Sockets\SocketAsyncEventArgs.Unix.cs (1)
353remoteSocketAddress.Size > 0 ? _currentSocket._rightEndPoint!.Create(remoteSocketAddress) : null);