5 overrides of IsMatch
System.Windows.Forms (1)
System\Windows\Forms\Rendering\FontCache.cs (1)
49
protected override bool
IsMatch
((Font Font, FONT_QUALITY Quality) key, CacheEntry entry)
System.Windows.Forms.Primitives (2)
System\Windows\Forms\GdiPlus\PenCache.cs (1)
13
protected override bool
IsMatch
(Color key, CacheEntry entry) => key == entry.Data;
System\Windows\Forms\GdiPlus\SolidBrushCache.cs (1)
13
protected override bool
IsMatch
(Color key, CacheEntry data) => key == data.Data;
System.Windows.Forms.Primitives.Tests (2)
System\Windows\Forms\RefCacheTests.cs (2)
86
protected override bool
IsMatch
(int key, CacheEntry data) => key == data.Data.ToArgb();
106
protected override bool
IsMatch
(int key, CacheEntry data) => key == data.Data;
1 reference to IsMatch
System.Windows.Forms.Primitives (1)
System\Windows\Forms\RefCountedCache.cs (1)
94
if (
IsMatch
(key, currentEntry))