/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/ |
H A D | ConnectionPoolManager.cs | 48 …internal static ConnectionPool GetConnectionPool(ServicePoint servicePoint, string groupName, Crea… in GetConnectionPool() argument 49 string key = GenerateKey(servicePoint.Host, servicePoint.Port, groupName); in GetConnectionPool() 53 …connectionPool = new ConnectionPool(servicePoint, servicePoint.ConnectionLimit, 0, servicePoint.Ma… in GetConnectionPool() 75 internal static bool RemoveConnectionPool(ServicePoint servicePoint, string groupName) { in RemoveConnectionPool() argument 76 string key = GenerateKey(servicePoint.Host, servicePoint.Port, groupName); in RemoveConnectionPool() 100 internal static void CleanupConnectionPool(ServicePoint servicePoint, string groupName) { in CleanupConnectionPool() argument 101 string key = GenerateKey(servicePoint.Host, servicePoint.Port, groupName); in CleanupConnectionPool()
|
H A D | ServicePointManager.cs | 156 ServicePoint servicePoint; in DebugMembers() 161 servicePoint = null; in DebugMembers() 163 if (servicePoint!=null) { in DebugMembers() 679 return servicePoint; in FindServicePoint() 721 ServicePoint servicePoint = null; in FindServicePointHelper() 731 if (servicePoint==null) { in FindServicePointHelper() 757 return servicePoint; in FindServicePointHelper() 785 ServicePoint servicePoint = null; in FindServicePoint() 795 if (servicePoint==null) { in FindServicePoint() 822 return servicePoint; in FindServicePoint() [all …]
|
H A D | ServicePoint.cs | 19 …public delegate IPEndPoint BindIPEndPoint(ServicePoint servicePoint, IPEndPoint remoteEndPoint, in… in BindIPEndPoint() argument 1148 …internal ConnectSocketState(ServicePoint servicePoint, PooledStream pooledStream, object owner, So… in ConnectSocketState() argument 1150 this.servicePoint = servicePoint; in ConnectSocketState() 1156 internal ServicePoint servicePoint; field in System.Net.ServicePoint.ConnectSocketState 1182 …ws = state.servicePoint.ConnectSocketInternal(state.connectFailure, state.s4, state.s6, ref socket… in ConnectSocketCallback() 1197 state.servicePoint.CompleteGetConnection(state.s4, state.s6, socket, address); in ConnectSocketCallback() 1210 …solutionFailure || ws == WebExceptionStatus.NameResolutionFailure ? state.servicePoint.Host : null, in ConnectSocketCallback()
|
H A D | _ConnectionGroup.cs | 39 internal ConnectionGroup(ServicePoint servicePoint, string connName) { in ConnectionGroup() argument 40 m_ServicePoint = servicePoint; in ConnectionGroup() 41 m_ConnectionLimit = servicePoint.ConnectionLimit; in ConnectionGroup()
|
H A D | HttpWebRequest.cs | 1809 ServicePoint servicePoint = null; in DoSubmitRequestProcessing() 1820 resubmit = servicePoint != null; in DoSubmitRequestProcessing() 1846 if (servicePoint == null) in DoSubmitRequestProcessing() 1852 _ServicePoint = servicePoint; in DoSubmitRequestProcessing() 1856 SubmitRequest(servicePoint); in DoSubmitRequestProcessing() 3256 ServicePoint servicePoint = _ServicePoint; in FindServicePoint() 3257 if ( servicePoint == null || forceFind ) { in FindServicePoint() 3278 servicePoint = _ServicePoint; in FindServicePoint() 3281 return servicePoint; in FindServicePoint() 5135 _ServicePoint = servicePoint; in HttpWebRequest() [all …]
|
H A D | _TLSstream.cs | 35 …orkStream, X509CertificateCollection clientCertificates, ServicePoint servicePoint, object initiat… in TlsStream() argument 57 …RemoteCertValidationCallback certValidationCallback = servicePoint.SetupHandshakeDoneProcedure(thi… in TlsStream()
|
H A D | connectionpool.cs | 98 …internal ConnectionPool(ServicePoint servicePoint, int maxPoolSize, int minPoolSize, int idleTimeo… in ConnectionPool() argument 104 m_ServicePoint = servicePoint; in ConnectionPool()
|
H A D | FtpWebRequest.cs | 490 ServicePoint servicePoint = ServicePointManager.FindServicePoint(m_Uri, proxy); 495 m_ServicePoint = servicePoint; 584 ServicePoint servicePoint = ServicePoint; in GetResponse() 904 ServicePoint servicePoint = ServicePoint; in GetRequestStream()
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/mail/ |
H A D | SmtpTransport.cs | 183 private void UpdateServicePoint(ServicePoint servicePoint) in UpdateServicePoint() argument 186 lastUsedServicePoint = servicePoint; in UpdateServicePoint() 188 else if (lastUsedServicePoint.Host != servicePoint.Host in UpdateServicePoint() 189 || lastUsedServicePoint.Port != servicePoint.Port) { in UpdateServicePoint() 191 lastUsedServicePoint = servicePoint; in UpdateServicePoint() 195 internal void GetConnection(ServicePoint servicePoint) in GetConnection() argument 200 UpdateServicePoint(servicePoint); in GetConnection() 210 connection.GetConnection(servicePoint); in GetConnection() 223 UpdateServicePoint(servicePoint); in BeginGetConnection() 352 internal void CloseIdleConnections(ServicePoint servicePoint) in CloseIdleConnections() argument [all …]
|
H A D | smtpconnection.cs | 165 if (Logging.On) Logging.Associate(Logging.Web, this, servicePoint); in BeginGetConnection() 166 Debug.Assert(servicePoint != null, "servicePoint was null from SmtpTransport"); in BeginGetConnection() 171 …connectionPool = ConnectionPoolManager.GetConnectionPool(servicePoint, "", m_CreateConnectionCallb… in BeginGetConnection() 173 …syncResult result = new ConnectAndHandshakeAsyncResult(this, servicePoint.Host, servicePoint.Port,… in BeginGetConnection() 314 internal void GetConnection(ServicePoint servicePoint) in GetConnection() argument 321 if (Logging.On) Logging.Associate(Logging.Web, this, servicePoint); in GetConnection() 322 Debug.Assert(servicePoint != null, "servicePoint was null from SmtpTransport"); in GetConnection() 323 …connectionPool = ConnectionPoolManager.GetConnectionPool(servicePoint, "", m_CreateConnectionCallb… in GetConnection() 397 …TlsStream TlsStream = new TlsStream(servicePoint.Host, pooledStream.NetworkStream, clientCertifica… in GetConnection() 425 NetworkCredential credential = credentials.GetCredential(servicePoint.Host, in GetConnection() [all …]
|
H A D | SmtpClient.cs | 62 ServicePoint servicePoint = null; field in System.Net.Mail.SmtpClient 309 if (servicePoint == null || servicePointChanged) { 310 servicePoint = ServicePointManager.FindServicePoint(host, port); 314 return servicePoint; 972 if ((transport != null) && (servicePoint != null)) { in Dispose() 973 transport.CloseIdleConnections(servicePoint); in Dispose()
|
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net/ |
H A D | HttpWebRequest.cs | 92 ServicePoint servicePoint; field in System.Net.HttpWebRequest 615 servicePoint = null; // we may need a new one 649 get { return servicePoint; } 723 get { return servicePoint.UsesProxy && !servicePoint.UseConnect; } 750 if (hostChanged || servicePoint == null) { in GetServicePoint() 756 return servicePoint; in GetServicePoint() 881 servicePoint = GetServicePoint (); in BeginGetRequestStream() 1005 servicePoint = GetServicePoint (); in BeginGetResponse() 1348 …if (!force_version && servicePoint.ProtocolVersion != null && servicePoint.ProtocolVersion < versi… in GetRequestHeaders() 1349 actualVersion = servicePoint.ProtocolVersion; in GetRequestHeaders() [all …]
|
H A D | BindIPEndPoint.cs | 29 …public delegate IPEndPoint BindIPEndPoint (ServicePoint servicePoint, IPEndPoint remoteEndPoint, i… in BindIPEndPoint() argument
|
H A D | FtpWebRequest.cs | 38 ServicePoint servicePoint; field in System.Net.FtpWebRequest 502 if (servicePoint == null) in GetServicePoint() 503 servicePoint = ServicePointManager.FindServicePoint (requestUri, proxy); in GetServicePoint() 505 return servicePoint; in GetServicePoint()
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.ServicePoint/src/System/Net/ |
H A D | BindIPEndPoint.cs | 7 …public delegate IPEndPoint BindIPEndPoint(ServicePoint servicePoint, IPEndPoint remoteEndPoint, in… in BindIPEndPoint() argument
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Diagnostics.DiagnosticSource/src/System/Diagnostics/ |
H A D | HttpHandlerDiagnosticListener.cs | 223 ServicePoint servicePoint = weakRef.Target as ServicePoint; 224 if (servicePoint != null) 229 … Hashtable originalTable = s_connectionGroupListField.GetValue(servicePoint) as Hashtable; 232 s_connectionGroupListField.SetValue(servicePoint, newTable);
|
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.ServicePoint/ref/ |
H A D | System.Net.ServicePoint.cs | 10 …public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.… in BindIPEndPoint() argument
|
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monotouch/ |
H A D | System.cs | 5344 …public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.… in BindIPEndPoint() argument
|
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monotouch/ |
H A D | System.cs | 5381 …public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.… in BindIPEndPoint() argument
|
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/monodroid/ |
H A D | System.cs | 5342 …public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.… in BindIPEndPoint() argument
|
/dports/lang/mono/mono-5.10.1.57/external/api-snapshot/profiles/monodroid/ |
H A D | System.cs | 5377 …public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.… in BindIPEndPoint() argument
|
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.0/ |
H A D | System.cs | 8074 …public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.… in BindIPEndPoint() argument
|
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v2.0/ |
H A D | System.cs | 7783 …public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.… in BindIPEndPoint() argument
|
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.5.2/ |
H A D | System.cs | 8014 …public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.… in BindIPEndPoint() argument
|
/dports/lang/mono/mono-5.10.1.57/external/binary-reference-assemblies/src/v4.6.1/ |
H A D | System.cs | 8043 …public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.… in BindIPEndPoint() argument
|