57 lines
2.2 KiB
C#
57 lines
2.2 KiB
C#
using System;
|
|
using Cpp2IlInjected;
|
|
|
|
namespace System.Drawing.Imaging
|
|
{
|
|
/// <summary>Encapsulates an array of <see cref="T:System.Drawing.Imaging.EncoderParameter" /> objects.</summary>
|
|
// Token: 0x0200003E RID: 62
|
|
[Token(Token = "0x200003E")]
|
|
public sealed class EncoderParameters : IDisposable
|
|
{
|
|
/// <summary>Initializes a new instance of the <see cref="T:System.Drawing.Imaging.EncoderParameters" /> class that can contain the specified number of <see cref="T:System.Drawing.Imaging.EncoderParameter" /> objects.</summary>
|
|
/// <param name="count">An integer that specifies the number of <see cref="T:System.Drawing.Imaging.EncoderParameter" /> objects that the <see cref="T:System.Drawing.Imaging.EncoderParameters" /> object can contain.</param>
|
|
// Token: 0x0600013F RID: 319 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x600013F")]
|
|
[Address(RVA = "0x680290", Offset = "0x67F090", VA = "0x180680290")]
|
|
public EncoderParameters(int count)
|
|
{
|
|
}
|
|
|
|
/// <summary>Gets or sets an array of <see cref="T:System.Drawing.Imaging.EncoderParameter" /> objects.</summary>
|
|
/// <returns>The array of <see cref="T:System.Drawing.Imaging.EncoderParameter" /> objects.</returns>
|
|
// Token: 0x17000024 RID: 36
|
|
// (get) Token: 0x06000140 RID: 320 RVA: 0x00002050 File Offset: 0x00000250
|
|
[Token(Token = "0x17000024")]
|
|
public EncoderParameter[] Param
|
|
{
|
|
[Token(Token = "0x6000140")]
|
|
[Address(RVA = "0x3F6E20", Offset = "0x3F5C20", VA = "0x1803F6E20")]
|
|
get
|
|
{
|
|
return null;
|
|
}
|
|
}
|
|
|
|
// Token: 0x06000141 RID: 321 RVA: 0x00002718 File Offset: 0x00000918
|
|
[Token(Token = "0x6000141")]
|
|
[Address(RVA = "0x67FF00", Offset = "0x67ED00", VA = "0x18067FF00")]
|
|
internal IntPtr ConvertToMemory()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
/// <summary>Releases all resources used by this <see cref="T:System.Drawing.Imaging.EncoderParameters" /> object.</summary>
|
|
// Token: 0x06000142 RID: 322 RVA: 0x00002053 File Offset: 0x00000253
|
|
[Token(Token = "0x6000142")]
|
|
[Address(RVA = "0x680210", Offset = "0x67F010", VA = "0x180680210", Slot = "4")]
|
|
public void Dispose()
|
|
{
|
|
}
|
|
|
|
// Token: 0x0400016E RID: 366
|
|
[FieldOffset(Offset = "0x10")]
|
|
[Token(Token = "0x400016E")]
|
|
private EncoderParameter[] _param;
|
|
}
|
|
}
|