15 references to Callback
System (15)
net\System\Net\_TimerThread.cs (6)
58internal abstract Timer CreateTimer(Callback callback, object context); 299internal override Timer CreateTimer(Callback callback, object context) { 403internal override Timer CreateTimer(Callback callback, object context) 414private Callback m_Callback; 430internal TimerNode(Callback callback, object context, int durationMilliseconds, object queueLock) : base(durationMilliseconds) 567Callback callback = m_Callback;
net\System\Net\connectionpool.cs (2)
34private static TimerThread.Callback s_CleanupCallback = new TimerThread.Callback(CleanupCallbackWrapper); 35private static TimerThread.Callback s_CancelErrorCallback = new TimerThread.Callback(CancelErrorCallbackWrapper);
net\System\Net\FtpWebRequest.cs (1)
222private TimerThread.Callback m_TimerCallback;
net\System\Net\HttpWebRequest.cs (2)
129private static readonly TimerThread.Callback s_ContinueTimeoutCallback = new TimerThread.Callback(ContinueTimeoutCallback); 131private static readonly TimerThread.Callback s_TimeoutCallback = new TimerThread.Callback(TimeoutCallback);
net\System\Net\NetWebProxyFinder.cs (1)
25private static readonly TimerThread.Callback timerCallback = new TimerThread.Callback(RequestTimeoutCallback);
net\System\Net\ServicePoint.cs (1)
63private readonly TimerThread.Callback m_IdleConnectionGroupTimeoutDelegate;
net\System\Net\ServicePointManager.cs (2)
52internal static readonly TimerThread.Callback s_IdleServicePointTimeoutDelegate = new TimerThread.Callback(IdleServicePointTimeoutCallback); 222internal static TimerThread.Callback IdleServicePointTimeoutDelegate