2 instantiations of ListEntry
System.ComponentModel.Primitives (2)
System\ComponentModel\EventHandlerList.cs (2)
54
_head = new
ListEntry
(key, value, _head);
68
_head = new
ListEntry
(key, value, _head);
10 references to ListEntry
System.ComponentModel.Primitives (10)
System\ComponentModel\EventHandlerList.cs (10)
11
private
ListEntry
? _head;
37
ListEntry
? e = null;
47
ListEntry
? e = Find(key);
61
ListEntry
? e = Find(key);
76
ListEntry
? currentListEntry = listToAddFrom._head;
86
private
ListEntry
? Find(object key)
88
ListEntry
? found = _head;
102
ListEntry
? e = Find(key);
111
internal readonly
ListEntry
? _next;
115
public ListEntry(object key, Delegate? handler,
ListEntry
? next)