5 writes to Next
System.Security.Cryptography (5)
System\Security\Cryptography\X509Certificates\OpenSslCrlCache.cs (5)
540
node.
Next
= _head;
565
previous.
Next
= null;
632
previous.
Next
= current.Next;
633
current.
Next
= _head;
691
current.
Next
= null;
10 references to Next
System.Security.Cryptography (10)
System\Security\Cryptography\X509Certificates\OpenSslCrlCache.cs (10)
553
Node? next = cur?.
Next
;
559
next = cur.
Next
;
626
_expire = current.
Next
;
632
previous.Next = current.
Next
;
642
current = current.
Next
;
684
while (current.
Next
!= prune && current.
Next
is not null)
687
current = current.
Next
;
690
Debug.Assert(current.
Next
== prune, "The prune node should be in the list");
702
prune = prune.
Next
;