3 writes to _errors
System.Security.Cryptography (3)
System\Security\Cryptography\X509Certificates\OpenSslX509ChainProcessor.cs (3)
1351_errors = null; 1383_errors = ArrayPool<ErrorCollection>.Shared.Rent(size); 1391_errors = ArrayPool<ErrorCollection>.Shared.Rent(errorDepth + 1);
9 references to _errors
System.Security.Cryptography (9)
System\Security\Cryptography\X509Certificates\OpenSslX509ChainProcessor.cs (9)
1346internal ref ErrorCollection this[int idx] => ref _errors![idx]; 1350ErrorCollection[]? toReturn = _errors; 1379if (_errors == null) 1386_errors.AsSpan().Clear(); 1388else if (errorDepth >= _errors.Length) 1390ErrorCollection[] toReturn = _errors; 1392toReturn.AsSpan().CopyTo(_errors); 1395_errors.AsSpan(toReturn.Length).Clear(); 1400_errors[errorDepth].Add(errorCode);