Home
last modified time | relevance | path

Searched refs:servicePoint (Results 1 – 25 of 32) sorted by relevance

12

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DConnectionPoolManager.cs48 …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 DServicePointManager.cs156 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 DServicePoint.cs19 …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.cs39 internal ConnectionGroup(ServicePoint servicePoint, string connName) { in ConnectionGroup() argument
40 m_ServicePoint = servicePoint; in ConnectionGroup()
41 m_ConnectionLimit = servicePoint.ConnectionLimit; in ConnectionGroup()
H A DHttpWebRequest.cs1809 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.cs35 …orkStream, X509CertificateCollection clientCertificates, ServicePoint servicePoint, object initiat… in TlsStream() argument
57 …RemoteCertValidationCallback certValidationCallback = servicePoint.SetupHandshakeDoneProcedure(thi… in TlsStream()
H A Dconnectionpool.cs98 …internal ConnectionPool(ServicePoint servicePoint, int maxPoolSize, int minPoolSize, int idleTimeo… in ConnectionPool() argument
104 m_ServicePoint = servicePoint; in ConnectionPool()
H A DFtpWebRequest.cs490 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 DSmtpTransport.cs183 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 Dsmtpconnection.cs165 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 DSmtpClient.cs62 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 DHttpWebRequest.cs92 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 DBindIPEndPoint.cs29 …public delegate IPEndPoint BindIPEndPoint (ServicePoint servicePoint, IPEndPoint remoteEndPoint, i… in BindIPEndPoint() argument
H A DFtpWebRequest.cs38 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 DBindIPEndPoint.cs7 …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 DHttpHandlerDiagnosticListener.cs223 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 DSystem.Net.ServicePoint.cs10 …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 DSystem.cs5344 …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 DSystem.cs5381 …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 DSystem.cs5342 …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 DSystem.cs5377 …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 DSystem.cs8074 …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 DSystem.cs7783 …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 DSystem.cs8014 …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 DSystem.cs8043 …public delegate System.Net.IPEndPoint BindIPEndPoint(System.Net.ServicePoint servicePoint, System.… in BindIPEndPoint() argument

12