<PackageReference Include="System.Drawing.Common" Version="9.0.5" />

BufferedGraphics

public sealed class BufferedGraphics : IDisposable
Provides a graphics buffer for double buffering.
using System.Runtime.CompilerServices; namespace System.Drawing { public sealed class BufferedGraphics : IDisposable { [System.Runtime.CompilerServices.Nullable(1)] public Graphics Graphics { [System.Runtime.CompilerServices.NullableContext(1)] get { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } internal BufferedGraphics() { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } public void Dispose() { } public void Render() { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } [System.Runtime.CompilerServices.NullableContext(2)] public void Render(Graphics target) { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } public void Render(IntPtr targetDC) { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } }