3 writes to _errors
System.Security.Cryptography (3)
System\Security\Cryptography\X509Certificates\OpenSslX509ChainProcessor.cs (3)
1339_errors = null; 1371_errors = ArrayPool<ErrorCollection>.Shared.Rent(size); 1379_errors = ArrayPool<ErrorCollection>.Shared.Rent(errorDepth + 1);
9 references to _errors
System.Security.Cryptography (9)
System\Security\Cryptography\X509Certificates\OpenSslX509ChainProcessor.cs (9)
1334internal ref ErrorCollection this[int idx] => ref _errors![idx]; 1338ErrorCollection[]? toReturn = _errors; 1367if (_errors == null) 1374_errors.AsSpan().Clear(); 1376else if (errorDepth >= _errors.Length) 1378ErrorCollection[] toReturn = _errors; 1380toReturn.AsSpan().CopyTo(_errors); 1383_errors.AsSpan(toReturn.Length).Clear(); 1388_errors[errorDepth].Add(errorCode);