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);
}
}
}