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