1 instantiation of Node
System.Security.Cryptography (1)
System\Security\Cryptography\X509Certificates\OpenSslCrlCache.cs (1)
539
Node node = new
Node
(hashCode, key, value);
14 references to Node
System.Security.Cryptography (14)
System\Security\Cryptography\X509Certificates\OpenSslCrlCache.cs (14)
495
private
Node
? _head;
496
private
Node
? _expire;
522
if (TryGetNode(hashCode, key, out
Node
? current))
539
Node
node = new Node(hashCode, key, value);
551
Node
? previous = null;
552
Node
? cur = _head;
553
Node
? next = cur?.Next;
596
if (TryGetNode(hashCode, key, out
Node
? node))
609
private bool TryGetNode(int hashCode, string key, [NotNullWhen(true)] out
Node
? value)
613
Node
? previous = null;
614
Node
? current = _head;
657
Node
? prune;
682
Node
current = _head;
717
internal
Node
? Next { get; set; }