Home
last modified time | relevance | path

Searched refs:ServicePointManager (Results 1 – 25 of 225) sorted by relevance

123456789

/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.ServicePoint/tests/
H A DServicePointManagerTest.cs46 ServicePointManager.DefaultConnectionLimit = 2; in DefaultConnectionLimit_Roundtrips()
58 ServicePointManager.DnsRefreshTimeout = 42; in DnsRefreshTimeout_Roundtrips()
91 ServicePointManager.Expect100Continue = true; in Expect100Continue_Roundtrips()
118 ServicePointManager.MaxServicePoints = 42; in MaxServicePoints_Roundtrips()
121 ServicePointManager.MaxServicePoints = 0; in MaxServicePoints_Roundtrips()
131 Assert.False(ServicePointManager.ReusePort); in ReusePort_Roundtrips()
133 ServicePointManager.ReusePort = true; in ReusePort_Roundtrips()
134 Assert.True(ServicePointManager.ReusePort); in ReusePort_Roundtrips()
136 ServicePointManager.ReusePort = false; in ReusePort_Roundtrips()
137 Assert.False(ServicePointManager.ReusePort); in ReusePort_Roundtrips()
[all …]
H A DTlsSystemDefault.cs15 …RemoteInvoke(() => Assert.Equal(SecurityProtocolType.SystemDefault, ServicePointManager.SecurityPr… in ServicePointManager_SecurityProtocolDefault_Ok()
21 … RemoteInvoke(() => ServicePointManager.SecurityProtocol = SecurityProtocolType.SystemDefault); in ServicePointManager_CheckAllowedProtocols_SystemDefault_Allowed()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Test/System.Net/
H A DServicePointManagerTest.cs33 maxIdle = ServicePointManager.MaxServicePointIdleTime; in GetReady()
34 ServicePointManager.MaxServicePointIdleTime = 10; in GetReady()
45 ServicePointManager.MaxServicePointIdleTime = maxIdle; in Finish()
54 Assert.AreEqual (0, ServicePointManager.MaxServicePoints, "#1"); in MaxServicePointManagers()
65 sp = ServicePointManager.FindServicePoint (yahooUri); in MaxServicePointManagers()
67 sp = ServicePointManager.FindServicePoint (apacheUri); in MaxServicePointManagers()
70 ServicePointManager.MaxServicePoints = 1; in MaxServicePointManagers()
72 sp = ServicePointManager.FindServicePoint (googleUri); in MaxServicePointManagers()
74 sp = ServicePointManager.FindServicePoint (yahooUri); in MaxServicePointManagers()
76 sp = ServicePointManager.FindServicePoint (apacheUri); in MaxServicePointManagers()
[all …]
H A DServicePointTest.cs30 max = ServicePointManager.MaxServicePoints; in SaveMax()
31 ServicePointManager.MaxServicePoints = 0; in SaveMax()
36 ServicePointManager.MaxServicePoints = max; in RestoreMax()
47 ServicePointManager.MaxServicePoints = 2; in All()
53 ServicePointManager.MaxServicePoints = 0; in All()
97 sp2 = ServicePointManager.FindServicePoint (uri2); in All()
131 ServicePointManager.DefaultConnectionLimit = 5; in ConnectionLimit()
134 ServicePoint sp = ServicePointManager.FindServicePoint (uri); in ConnectionLimit()
163 ServicePoint sp = ServicePointManager.FindServicePoint (uri); in EndPointBind()
227 ServicePointManager.DnsRefreshTimeout = dnsRefreshTimeout; in DnsRefreshTimeout()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/Configuration/
H A DSettingsSection.cs27 o = System.Net.ServicePointManager.DefaultConnectionLimit; in EnsureConfigLoaded()
29 o = System.Net.ServicePointManager.Expect100Continue; in EnsureConfigLoaded()
65 [ConfigurationProperty(ConfigurationStrings.ServicePointManager)]
66 public ServicePointManagerElement ServicePointManager property in System.Net.Configuration.SettingsSection
154 this.checkCertificateName = section.ServicePointManager.CheckCertificateName; in SettingsSectionInternal()
155 … this.checkCertificateRevocationList = section.ServicePointManager.CheckCertificateRevocationList; in SettingsSectionInternal()
156 this.dnsRefreshTimeout = section.ServicePointManager.DnsRefreshTimeout; in SettingsSectionInternal()
159 this.enableDnsRoundRobin = section.ServicePointManager.EnableDnsRoundRobin; in SettingsSectionInternal()
160 this.encryptionPolicy = section.ServicePointManager.EncryptionPolicy; in SettingsSectionInternal()
161 this.expect100Continue = section.ServicePointManager.Expect100Continue; in SettingsSectionInternal()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/Common/src/System/Net/
H A DTlsStream.cs21 …_sslStream = new SslStream(stream, false, ServicePointManager.ServerCertificateValidationCallback); in TlsStream()
31 (SslProtocols)ServicePointManager.SecurityProtocol, // enums use same values in AuthenticateAsClient()
32 ServicePointManager.CheckCertificateRevocationList); in AuthenticateAsClient()
40 (SslProtocols)ServicePointManager.SecurityProtocol, // enums use same values in BeginAuthenticateAsClient()
41 ServicePointManager.CheckCertificateRevocationList, in BeginAuthenticateAsClient()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/
H A DServicePoint.cs120 m_UseNagleAlgorithm = ServicePointManager.UseNagleAlgorithm; in ServicePoint()
121 m_Expect100Continue = ServicePointManager.Expect100Continue; in ServicePoint()
125 m_UseTcpKeepAlive = ServicePointManager.s_UseTcpKeepAlive; in ServicePoint()
1258 …if (ServicePointManager.ReusePortSupported.HasValue && !ServicePointManager.ReusePortSupported.Val… in SetUnicastReusePortForSocket()
1264 reusePort = ServicePointManager.ReusePort; in SetUnicastReusePortForSocket()
1277 ServicePointManager.ReusePortSupported = true; in SetUnicastReusePortForSocket()
1285 ServicePointManager.ReusePortSupported = false; in SetUnicastReusePortForSocket()
1381 if (ServicePointManager.ReusePort) { in ConnectSocketInternal()
1396 if (ServicePointManager.ReusePort) { in ConnectSocketInternal()
1497 if (!ServicePointManager.EnableDnsRoundRobin ) { in UpdateCurrentIndex()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/Mono.Security/Mono.Security.Protocol.Tls/
H A DHttpsClientStream.cs51 ServicePointManager.SecurityProtocol, clientCertificates) in HttpsClientStream()
60 base.CheckCertRevocationStatus = ServicePointManager.CheckCertificateRevocationList; in HttpsClientStream()
91 if (ServicePointManager.CertificatePolicy != null) { in RaiseServerCertificateValidation()
93 …bool res = ServicePointManager.CertificatePolicy.CheckValidationResult (sp, certificate, _request,… in RaiseServerCertificateValidation()
102 …SNS.RemoteCertificateValidationCallback cb = ServicePointManager.ServerCertificateValidationCallba… in RaiseServerCertificateValidation()
/dports/lang/mono/mono-5.10.1.57/mcs/class/System.ServiceModel/Mono.Security.Protocol.Tls/
H A DHttpsClientStream.cs50 ServicePointManager.SecurityProtocol, clientCertificates) in HttpsClientStream()
59 … base.CheckCertRevocationStatus = ServicePointManager.CheckCertificateRevocationList; in HttpsClientStream()
89 if (ServicePointManager.CertificatePolicy != null) { in RaiseServerCertificateValidation()
91 …bool res = ServicePointManager.CertificatePolicy.CheckValidationResult (sp, certificate, _request,… in RaiseServerCertificateValidation()
100 …SNS.RemoteCertificateValidationCallback cb = ServicePointManager.ServerCertificateValidationCallba… in RaiseServerCertificateValidation()
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System/net/System/Net/SecureProtocols/
H A DSslStream.cs128 …AuthenticateAsClient(targetHost, new X509CertificateCollection(), ServicePointManager.DefaultSslPr… in AuthenticateAsClient()
133 …AuthenticateAsClient(targetHost, clientCertificates, ServicePointManager.DefaultSslProtocols, fals… in AuthenticateAsClient()
148 …nAuthenticateAsClient(targetHost, new X509CertificateCollection(), ServicePointManager.DefaultSslP… in BeginAuthenticateAsClient()
157 …return BeginAuthenticateAsClient(targetHost, clientCertificates, ServicePointManager.DefaultSslPro… in BeginAuthenticateAsClient()
187 … AuthenticateAsServer(serverCertificate, false, ServicePointManager.DefaultSslProtocols, false); in AuthenticateAsServer()
193 …AuthenticateAsServer(serverCertificate, clientCertificateRequired, ServicePointManager.DefaultSslP… in AuthenticateAsServer()
209 …return BeginAuthenticateAsServer(serverCertificate, false, ServicePointManager.DefaultSslProtocols… in BeginAuthenticateAsServer()
219 …AuthenticateAsServer(serverCertificate, clientCertificateRequired, ServicePointManager.DefaultSslP… in BeginAuthenticateAsServer()
278 …return AuthenticateAsClientAsync(targetHost, clientCertificates, ServicePointManager.DefaultSslPro… in AuthenticateAsClientAsync()
296 …nticateAsServerAsync(serverCertificate, clientCertificateRequired, ServicePointManager.DefaultSslP… in AuthenticateAsServerAsync()
/dports/devel/RStudio/rstudio-2021.09.1-372/dependencies/windows/
H A DInstall-RStudio-Prereqs.ps137 $securityProtocolSettingsOriginal = [System.Net.ServicePointManager]::SecurityProtocol
38 [System.Net.ServicePointManager]::SecurityProtocol = 3072 -bor 768 -bor 192 -bor 48
82 [System.Net.ServicePointManager]::SecurityProtocol = $securityProtocolSettingsOriginal
/dports/devel/RStudio/rstudio-2021.09.1-372/docker/jenkins/
H A DDockerfile.windows16 [System.Net.ServicePointManager]::SecurityProtocol = 3072 -bor 768 -bor 192 -bor 48; `
29 RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; `
45 [System.Net.ServicePointManager]::SecurityProtocol = 3072 -bor 768 -bor 192 -bor 48; `
55 RUN [System.Net.ServicePointManager]::SecurityProtocol = 3072 -bor 768 -bor 192 -bor 48; `
69 RUN [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 ; `
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/scripts/vagrant/provision/
H A Dbase.ps19 …pass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.Servi…
/dports/graphics/flif/FLIF-0.3-96-g74ea92b/build/MSVC/
H A Ddl_make_vs_x64.bat23 …PowerShell "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]…
49 …PowerShell "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]…
58 …PowerShell "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]…
67 …PowerShell "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]…
H A Ddl_make_vs.bat23 …PowerShell "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]…
49 …PowerShell "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]…
58 …PowerShell "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]…
67 …PowerShell "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]…
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/System.Net/
H A DServicePointManager.platformnotsupported.cs31 public partial class ServicePointManager { class
41 private ServicePointManager () in ServicePointManager() method in System.Net.ServicePointManager
H A DServicePointManager.cs65 public partial class ServicePointManager { class
146 static ServicePointManager () in ServicePointManager() method in System.Net.ServicePointManager
172 private ServicePointManager () in ServicePointManager() method in System.Net.ServicePointManager
/dports/irc/smuxi/smuxi-1.1/src/Engine/
H A DCertificateValidator.cs43 if (ServicePointManager.ServerCertificateValidationCallback != null) { in CertificateValidator()
50 ServicePointManager.ServerCertificateValidationCallback = ValidateCertificate; in CertificateValidator()
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/modules/windows/
H A Dwin_psrepository.ps122 $security_protocols = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.SecurityP…
29 [System.Net.ServicePointManager]::SecurityProtocol = $security_protocols
/dports/net-mgmt/ocsinventory-server/OCSInventory-Server-2.8.1/binutils/
H A Docsinventory-powershell-injector.ps1101 [System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy in Send-File()
102 …[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Ssl3, [Net.SecurityProto… in Send-File()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Net.ServicePoint/ref/
H A DSystem.Net.ServicePoint.cs32 public class ServicePointManager class
36 private ServicePointManager() { } in ServicePointManager() method in System.Net.ServicePointManager
/dports/lang/mono/mono-5.10.1.57/mcs/class/System/Mono.Net.Security/
H A DMonoTlsStream.cs117 (SslProtocols)ServicePointManager.SecurityProtocol, in CreateStream()
118 ServicePointManager.CheckCertificateRevocationList); in CreateStream()
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/installer/compass/
H A DInstall-Compass.ps1.in38 if ([Net.ServicePointManager]::SecurityProtocol.ToString() -NotMatch "Tls12") {
39 [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/community/windows/tests/integration/targets/win_psscript/tasks/
H A Dsetup_repos.yml33 [System.Net.ServicePointManager]::SecurityProtocol = `
34 [System.Net.ServicePointManager]::SecurityProtocol -bor
/dports/sysutils/ansible2/ansible-2.9.27/lib/ansible/module_utils/powershell/
H A DAnsible.ModuleUtils.WebRequest.psm1197 [System.Net.ServicePointManager]::ServerCertificateValidationCallback = { $true } in Get-AnsibleWebRequest()
201 …$security_protocols = [System.Net.ServicePointManager]::SecurityProtocol -bor [System.Net.Security… in Get-AnsibleWebRequest()
208 [System.Net.ServicePointManager]::SecurityProtocol = $security_protocols in Get-AnsibleWebRequest()

123456789