3 writes to m_TcpKeepAliveTime
System (3)
net\System\Net\ServicePoint.cs (3)
127m_TcpKeepAliveTime = ServicePointManager.s_TcpKeepAliveTime; 935m_TcpKeepAliveTime = keepAliveTime; 939m_TcpKeepAliveTime = 0;
4 references to m_TcpKeepAliveTime
System (4)
net\System\Net\ServicePoint.cs (4)
335input[4] = (byte) (m_TcpKeepAliveTime & 0xff); 336input[5] = (byte) ((m_TcpKeepAliveTime >> 8) & 0xff); 337input[6] = (byte) ((m_TcpKeepAliveTime >> 16) & 0xff); 338input[7] = (byte) ((m_TcpKeepAliveTime >> 24) & 0xff);