10 references to pSslInfo
Microsoft.AspNetCore.Server.IIS (10)
Core\IISHttpContext.FeatureCollection.cs (6)
388NativeRequest->pSslInfo != null && 389NativeRequest->pSslInfo->pClientCertInfo != null && 390NativeRequest->pSslInfo->pClientCertInfo->pCertEncoded != null && 391NativeRequest->pSslInfo->pClientCertInfo->CertEncodedSize != 0) 394var rawCertificateCopy = new byte[NativeRequest->pSslInfo->pClientCertInfo->CertEncodedSize]; 395Marshal.Copy((IntPtr)NativeRequest->pSslInfo->pClientCertInfo->pCertEncoded, rawCertificateCopy, 0, rawCertificateCopy.Length);
src\Shared\HttpSys\RequestProcessing\NativeRequestContext.cs (4)
156return NativeRequest->pSslInfo == null ? SslStatus.Insecure : 157NativeRequest->pSslInfo->SslClientCertNegotiated == 0 ? SslStatus.NoClientCert : 802if (request.pSslInfo == null) 807var sslInfo = (HTTP_SSL_INFO*)((byte*)request.pSslInfo + fixup);