2 types derived from Queue
System (2)
net\System\Net\_TimerThread.cs (2)
266private class TimerQueue : Queue { 397private class InfiniteTimerQueue : Queue {
23 references to Queue
System (23)
net\System\Net\_TimerThread.cs (2)
200internal static Queue CreateQueue(int durationMilliseconds) 224internal static Queue GetOrCreateQueue(int durationMilliseconds) {
net\System\Net\connectionpool.cs (2)
36private static TimerThread.Queue s_CancelErrorQueue = TimerThread.GetOrCreateQueue(ErrorWait); 52private readonly TimerThread.Queue m_CleanupQueue;
net\System\Net\FtpWebRequest.cs (3)
221private TimerThread.Queue m_TimerQueue = s_DefaultTimerQueue; 244private static readonly TimerThread.Queue s_DefaultTimerQueue = TimerThread.GetOrCreateQueue(s_DefaultTimeout); 1232private TimerThread.Queue TimerQueue {
net\System\Net\HttpWebRequest.cs (6)
130private static readonly TimerThread.Queue s_ContinueTimerQueue = TimerThread.GetOrCreateQueue(DefaultContinueTimeout); 143private TimerThread.Queue m_ContinueTimerQueue; 258private TimerThread.Queue _TimerQueue; 1035private TimerThread.Queue TimerQueue 1039TimerThread.Queue queue = _TimerQueue; 1095private TimerThread.Queue ContinueTimerQueue {
net\System\Net\NetWebProxyFinder.cs (1)
24private static TimerThread.Queue timerQueue;
net\System\Net\ServicePoint.cs (6)
37private TimerThread.Queue m_ConnectionLeaseTimerQueue; 52private TimerThread.Queue m_IdlingQueue; 107internal ServicePoint(Uri address, TimerThread.Queue defaultIdlingQueue, int defaultConnectionLimit, string lookupString, bool userChangedLimit, bool proxyServicePoint) { 143internal ServicePoint(string host, int port, TimerThread.Queue defaultIdlingQueue, int defaultConnectionLimit, string lookupString, bool userChangedLimit, bool proxyServicePoint) { 441internal TimerThread.Queue ConnectionLeaseTimerQueue { 443TimerThread.Queue queue = m_ConnectionLeaseTimerQueue;
net\System\Net\ServicePointManager.cs (1)
67private static volatile TimerThread.Queue s_ServicePointIdlingQueue = TimerThread.GetOrCreateQueue(100 * 1000);
net\System\Net\WebRequest.cs (2)
50private static TimerThread.Queue s_DefaultTimerQueue = TimerThread.CreateQueue(DefaultTimeout); 90internal static TimerThread.Queue DefaultTimerQueue {