3 writes to ipAddress
System.ServiceModel (3)
System\ServiceModel\Channels\ExclusiveTcpTransportManager.cs (3)
30this.ipAddress = ((IPEndPoint)this.listenSocket.LocalEndPoint).Address; 34this.ipAddress = IPAddress.Parse(channelListener.Uri.DnsSafeHost); 38this.ipAddress = ipAddressAny;
2 references to ipAddress
System.ServiceModel (2)
System\ServiceModel\Channels\ExclusiveTcpTransportManager.cs (2)
49return this.ipAddress; 91socketListener = new SocketConnectionListener(new IPEndPoint(ipAddress, port), this, false);