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