<PackageReference Include="System.Drawing.Common" Version="5.0.0-preview.1.20120.5" />

ImageAnimator

public sealed class ImageAnimator
namespace System.Drawing { public sealed class ImageAnimator { internal ImageAnimator() { } public static void Animate(Image image, EventHandler onFrameChangedHandler) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public static bool CanAnimate(Image image) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public static void StopAnimate(Image image, EventHandler onFrameChangedHandler) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public static void UpdateFrames() { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } public static void UpdateFrames(Image image) { throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing); } } }