7 references to DrawCachedBitmap
System.Drawing.Common.Tests (7)
System\Drawing\GraphicsTests.cs (7)
2867Assert.Throws<ArgumentNullException>(() => graphics.DrawCachedBitmap(null!, 0, 0));
2878Assert.Throws<ArgumentException>(() => graphics.DrawCachedBitmap(cachedBitmap, 0, 0));
2888graphics.DrawCachedBitmap(cachedBitmap, 0, 0);
2899graphics.DrawCachedBitmap(cachedBitmap, 0, 0);
2910Assert.Throws<InvalidOperationException>(() => graphics.DrawCachedBitmap(cachedBitmap, 0, 0));
2931graphics2.DrawCachedBitmap(cachedBitmap, 0, 0);
2935Assert.Throws<InvalidOperationException>(() => graphics2.DrawCachedBitmap(cachedBitmap, 0, 0));