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