3 implementations of NegotiatedCipherSuite
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
597TlsCipherSuite? ITlsHandshakeFeature.NegotiatedCipherSuite => Request.NegotiatedCipherSuite;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
409TlsCipherSuite? ITlsHandshakeFeature.NegotiatedCipherSuite => NegotiatedCipherSuite;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\TlsConnectionFeature.cs (1)
56public TlsCipherSuite? NegotiatedCipherSuite => _sslStream.NegotiatedCipherSuite;
4 references to NegotiatedCipherSuite
InMemory.FunctionalTests (1)
HttpsConnectionMiddlewareTests.cs (1)
149Assert.True(tlsFeature.NegotiatedCipherSuite >= TlsCipherSuite.TLS_NULL_WITH_NULL_NULL, "NegotiatedCipherSuite");
NativeIISSample (2)
Startup.cs (2)
63if (handshakeFeature.NegotiatedCipherSuite.HasValue) 65await context.Response.WriteAsync($"Cipher Suite: {handshakeFeature.NegotiatedCipherSuite.Value}" + Environment.NewLine);
TlsFeaturesObserve (1)
Program.cs (1)
49negotiated cipher suite = {tlsHandshakeFeature.NegotiatedCipherSuite};