7 references to SslStream
aspire (1)
Backchannel\ExtensionBackchannel.cs (1)
180
var stream = new
SslStream
(new NetworkStream(socket, true),
dotnet-svcutil-lib (1)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (1)
351
SslStream sslStream = new
SslStream
(stream, false, this.ValidateRemoteCertificate);
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Middleware\HttpsConnectionMiddleware.cs (1)
118
_sslStreamFactory = s => new
SslStream
(s, leaveInnerStreamOpen: false, userCertificateValidationCallback: remoteCertificateValidationCallback);
System.Net.HttpListener (1)
System\Net\Managed\HttpListener.Certificates.cs (1)
16
return new
SslStream
(innerStream, ownsStream, callback);
System.Net.Mail (1)
System\Net\Mail\SmtpConnection.cs (1)
161
SslStream sslStream = new
SslStream
(_stream!, false, ServicePointManager.ServerCertificateValidationCallback);
System.Net.Requests (2)
System\Net\FtpControlStream.cs (2)
189
SslStream sslStream = new
SslStream
(_dataStream, false, ServicePointManager.ServerCertificateValidationCallback);
397
SslStream sslStream = new
SslStream
(Stream, false, ServicePointManager.ServerCertificateValidationCallback);