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