1 override of GetEntry
System.Windows.Forms (1)
System\Windows\Forms\Rendering\FontCache.cs (1)
38public override CacheEntry GetEntry((Font Font, FONT_QUALITY Quality) key)
13 references to GetEntry
System.Windows.Forms (1)
System\Windows\Forms\Rendering\FontCache.cs (1)
42return base.GetEntry(key);
System.Windows.Forms.Primitives (2)
System\Windows\Forms\GdiPlus\GdiPlusCache.cs (2)
41return PenCache.GetEntry(color).CreateScope(); 58return BrushCache.GetEntry(color).CreateScope();
System.Windows.Forms.Primitives.Tests (10)
System\Windows\Forms\RefCacheTests.cs (10)
14var firstScope = cache.GetEntry(1).CreateScope(); 17var secondScope = cache.GetEntry(1).CreateScope(); 26using var thirdScope = cache.GetEntry(1).CreateScope(); 37var firstScope = cache.GetEntry(1).CreateScope(); 38var secondScope = cache.GetEntry(2).CreateScope(); 39var thirdScope = cache.GetEntry(3).CreateScope(); 40var fourthScope = cache.GetEntry(4).CreateScope(); 47var fifthScope = cache.GetEntry(5).CreateScope(); 48var sixthScope = cache.GetEntry(5).CreateScope(); 69using var seventhScope = cache.GetEntry(7).CreateScope();