3 writes to _address
System.Net.Primitives (3)
System\Net\IPEndPoint.cs (3)
41_address = new IPAddress(address); 57_address = address; 69_address = value;
8 references to _address
System.Net.Primitives (8)
System\Net\IPEndPoint.cs (8)
28public override AddressFamily AddressFamily => _address.AddressFamily; 65get => _address; 148_address.AddressFamily == AddressFamily.InterNetworkV6 ? 149string.Create(NumberFormatInfo.InvariantInfo, $"[{_address}]:{_port}") : 150string.Create(NumberFormatInfo.InvariantInfo, $"{_address}:{_port}"); 174return comparand is IPEndPoint other && other._address.Equals(_address) && other._port == _port; 179return _address.GetHashCode() ^ _port;