9 references to TcpState
System (9)
net\System\Net\NetworkInformation\SystemIPGlobalProperties.cs (2)
128if(connection.State != TcpState.Listen){ 140if(connection.State == TcpState.Listen){
net\System\Net\NetworkInformation\SystemTcpConnection.cs (4)
22TcpState state; 31int remotePort = ((state == TcpState.Listen)?0:row.remotePort1<<8|row.remotePort2); 45int remotePort = ((state == TcpState.Listen) ? 0 : row.remotePort1 << 8 | row.remotePort2); 52public override TcpState State{get {return state;}}
net\System\Net\NetworkInformation\TcpConnection.cs (1)
18public abstract TcpState State { get;}
net\System\Net\NetworkInformation\UnSafeNetInfoNativemethods.cs (2)
426internal TcpState state; 468internal TcpState state;