15 references to False
System (15)
net\System\Net\_AuthenticationManagerBase.cs (3)
86s_OSSupportsExtendedProtection = TriState.False; 91s_OSSupportsExtendedProtection = TriState.False; 145s_SspSupportsExtendedProtection = TriState.False;
net\System\Net\_Connection.cs (1)
879TriState needReConnect = TriState.False;
net\System\Net\_FtpControlStream.cs (1)
1247return TriState.False;
net\System\Net\_FtpDataStream.cs (1)
36} else if (writeOnly == TriState.False) {
net\System\Net\Cache\IERequestCache.cs (3)
981cacheCommitAction = TriState.False; // Delete 992cacheCommitAction = TriState.False; // Delete 1003if (cacheCommitAction == TriState.False)
net\System\Net\HttpListenerRequest.cs (2)
735m_KeepAlive = string.IsNullOrEmpty(header) ? TriState.False : TriState.True; 741m_KeepAlive = header.IndexOf("close") < 0 || header.IndexOf("keep-alive") >= 0 ? TriState.True : TriState.False;
net\System\Net\HttpWebRequest.cs (2)
838return _RequestIsAsync!=TriState.False; 842_RequestIsAsync = value ? TriState.True : TriState.False;
net\System\Net\ServicePoint.cs (2)
768m_HostLoopbackGuess = IsAddressListLoopback(new IPAddress[] { addr }) ? TriState.True : TriState.False; 772m_HostLoopbackGuess = NclUtilities.GuessWhetherHostIsLoopback(m_Host) ? TriState.True : TriState.False;