3 writes to _pal
System.Security.Cryptography (3)
System\Security\Cryptography\X509Certificates\X509Chain.cs (3)
30
_pal
= ChainPal.FromHandle(chainContext);
126
_pal
= ChainPal.BuildChain(
218
_pal
= null;
11 references to _pal
System.Security.Cryptography (11)
System\Security\Cryptography\X509Certificates\X509Chain.cs (11)
31
Debug.Assert(
_pal
!= null);
32
_chainElements = new X509ChainElementCollection(
_pal
.ChainElements!);
57
return _lazyChainStatus ??= (
_pal
== null ? Array.Empty<X509ChainStatus>() :
_pal
.ChainStatus!);
81
if (
_pal
== null)
84
return
_pal
.SafeHandle;
141
if (
_pal
is not null)
143
_chainElements = new X509ChainElementCollection(
_pal
.ChainElements!);
146
bool? verified =
_pal
.Verify(chainPolicy.VerificationFlags, out verificationException);
185
if (!success && throwOnException &&
_pal
?.ChainStatus is not { Length: > 0 })
215
IChainPal? pal =
_pal
;