3 writes to _errors
System.Security.Cryptography (3)
System\Security\Cryptography\X509Certificates\OpenSslX509ChainProcessor.cs (3)
1350_errors = null; 1382_errors = ArrayPool<ErrorCollection>.Shared.Rent(size); 1390_errors = ArrayPool<ErrorCollection>.Shared.Rent(errorDepth + 1);
9 references to _errors
System.Security.Cryptography (9)
System\Security\Cryptography\X509Certificates\OpenSslX509ChainProcessor.cs (9)
1345internal ref ErrorCollection this[int idx] => ref _errors![idx]; 1349ErrorCollection[]? toReturn = _errors; 1378if (_errors == null) 1385_errors.AsSpan().Clear(); 1387else if (errorDepth >= _errors.Length) 1389ErrorCollection[] toReturn = _errors; 1391toReturn.AsSpan().CopyTo(_errors); 1394_errors.AsSpan(toReturn.Length).Clear(); 1399_errors[errorDepth].Add(errorCode);