20 references to True
System (20)
net\System\Net\_AuthenticationManagerBase.cs (6)
71s_OSSupportsExtendedProtection = TriState.True; 82s_OSSupportsExtendedProtection = TriState.True; 96return (s_OSSupportsExtendedProtection == TriState.True); 111s_SspSupportsExtendedProtection = TriState.True; 140s_SspSupportsExtendedProtection = TriState.True; 160return (s_SspSupportsExtendedProtection == TriState.True);
net\System\Net\_Connection.cs (2)
907needReConnect = TriState.True; 947if (needReConnect == TriState.True) {
net\System\Net\_FtpControlStream.cs (1)
1245return TriState.True;
net\System\Net\_FtpDataStream.cs (1)
34if (writeOnly == TriState.True) {
net\System\Net\Cache\IERequestCache.cs (2)
985cacheCommitAction = TriState.True; // Full 999cacheCommitAction = TriState.True; // Full
net\System\Net\HttpListenerRequest.cs (4)
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; 746return m_KeepAlive == TriState.True;
net\System\Net\HttpWebRequest.cs (1)
842_RequestIsAsync = value ? TriState.True : TriState.False;
net\System\Net\ServicePoint.cs (3)
768m_HostLoopbackGuess = IsAddressListLoopback(new IPAddress[] { addr }) ? TriState.True : TriState.False; 772m_HostLoopbackGuess = NclUtilities.GuessWhetherHostIsLoopback(m_Host) ? TriState.True : TriState.False; 778return m_UserChangedLimit || (m_IPAddressInfoList == null ? m_HostLoopbackGuess != TriState.True : !m_IPAddressesAreLoopback) ? m_ConnectionLimit : LoopbackConnectionLimit;