16 references to s_ServicePointTable
System (16)
net\System\Net\ServicePointManager.cs (16)
162foreach (WeakReference servicePointReference in s_ServicePointTable) { 191lock(s_ServicePointTable) { 237lock (s_ServicePointTable) 239s_ServicePointTable.Remove(servicePoint.LookupString); 794lock (s_ServicePointTable) { 796WeakReference servicePointReference = s_ServicePointTable[tempEntry] as WeakReference; 804if (s_MaxServicePoints<=0 || s_ServicePointTable.Count<s_MaxServicePoints) { 816s_ServicePointTable[tempEntry] = servicePointReference; 821GlobalLog.LeaveException("ServicePointManager::FindServicePointHelper() reached the limit count:" + s_ServicePointTable.Count.ToString() + " limit:" + s_MaxServicePoints.ToString(), exception); 858lock (s_ServicePointTable) { 860WeakReference servicePointReference = s_ServicePointTable[tempEntry] as WeakReference; 868if (s_MaxServicePoints<=0 || s_ServicePointTable.Count<s_MaxServicePoints) { 881s_ServicePointTable[tempEntry] = servicePointReference; 886GlobalLog.LeaveException("ServicePointManager::FindServicePoint() reached the limit count:" + s_ServicePointTable.Count.ToString() + " limit:" + s_MaxServicePoints.ToString(), exception); 900lock (s_ServicePointTable) { 901foreach (DictionaryEntry item in s_ServicePointTable) {