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