4 writes to m_KeepAlive
System (4)
net\System\Net\HttpListenerRequest.cs (4)
280m_KeepAlive = TriState.Unspecified; 730m_KeepAlive = TriState.True; 735m_KeepAlive = string.IsNullOrEmpty(header) ? TriState.False : TriState.True; 741m_KeepAlive = header.IndexOf("close") < 0 || header.IndexOf("keep-alive") >= 0 ? TriState.True : TriState.False;
3 references to m_KeepAlive
System (3)
net\System\Net\HttpListenerRequest.cs (3)
719if (m_KeepAlive == TriState.Unspecified) 745GlobalLog.Print("HttpListenerRequest#" + ValidationHelper.HashString(this) + "::KeepAlive_get() returning:" + m_KeepAlive); 746return m_KeepAlive == TriState.True;