EncoderParameters
namespace System.Drawing.Imaging
{
public sealed class EncoderParameters : IDisposable
{
public EncoderParameter[] Param {
get {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
set {
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
}
public EncoderParameters()
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public EncoderParameters(int count)
{
throw new PlatformNotSupportedException(System.SR.PlatformNotSupported_Drawing);
}
public void Dispose()
{
}
}
}