<PackageReference Include="System.Drawing.Common" Version="9.0.0-rc.2.24474.1" />

EncoderParameters

public sealed class EncoderParameters : IDisposable
Encapsulates an array of EncoderParameter objects.
using System.Runtime.CompilerServices; namespace System.Drawing.Imaging { [System.Runtime.CompilerServices.NullableContext(1)] [System.Runtime.CompilerServices.Nullable(0)] public sealed class EncoderParameters : IDisposable { public EncoderParameter[] Param { get { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } set { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } } public EncoderParameters() { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } public EncoderParameters(int count) { throw new PlatformNotSupportedException(System.SR.SystemDrawingCommon_PlatformNotSupported); } public void Dispose() { } } }