5 references to Value
System.Windows.Forms.Primitives (5)
System\Windows\Forms\RefCountedCache.cs (4)
92
CacheEntry currentEntry = node.
Value
;
159
if (node!.
Value
.RefCount == 0)
162
node.
Value
.Dispose();
181
enumerator.Current!.
Value
.Dispose();
System\Windows\Forms\SinglyLinkedList.cs (1)
68
public static implicit operator T(Node? node) => node is null ? default! : node.
Value
;