This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
@@ -0,0 +1,90 @@
using System;
using Cpp2IlInjected;
namespace System.Drawing.Imaging
{
/// <summary>An <see cref="T:System.Drawing.Imaging.Encoder" /> object encapsulates a globally unique identifier (GUID) that identifies the category of an image encoder parameter.</summary>
// Token: 0x0200003B RID: 59
[Token(Token = "0x200003B")]
public sealed class Encoder
{
/// <summary>Initializes a new instance of the <see cref="T:System.Drawing.Imaging.Encoder" /> class from the specified globally unique identifier (GUID). The GUID specifies an image encoder parameter category.</summary>
/// <param name="guid">A globally unique identifier that identifies an image encoder parameter category.</param>
// Token: 0x06000138 RID: 312 RVA: 0x00002053 File Offset: 0x00000253
[Token(Token = "0x6000138")]
[Address(RVA = "0x680880", Offset = "0x67F680", VA = "0x180680880")]
public Encoder(Guid guid)
{
}
/// <summary>Gets a globally unique identifier (GUID) that identifies an image encoder parameter category.</summary>
/// <returns>The GUID that identifies an image encoder parameter category.</returns>
// Token: 0x17000023 RID: 35
// (get) Token: 0x06000139 RID: 313 RVA: 0x00002700 File Offset: 0x00000900
[Token(Token = "0x17000023")]
public Guid Guid
{
[Token(Token = "0x6000139")]
[Address(RVA = "0x6808B0", Offset = "0x67F6B0", VA = "0x1806808B0")]
get
{
return default(Guid);
}
}
/// <summary>An <see cref="T:System.Drawing.Imaging.Encoder" /> object that is initialized with the globally unique identifier for the compression parameter category.</summary>
// Token: 0x04000156 RID: 342
[Token(Token = "0x4000156")]
public static readonly Encoder Compression;
/// <summary>An <see cref="T:System.Drawing.Imaging.Encoder" /> object that is initialized with the globally unique identifier for the color depth parameter category.</summary>
// Token: 0x04000157 RID: 343
[Token(Token = "0x4000157")]
public static readonly Encoder ColorDepth;
/// <summary>Represents an <see cref="T:System.Drawing.Imaging.Encoder" /> object that is initialized with the globally unique identifier for the scan method parameter category.</summary>
// Token: 0x04000158 RID: 344
[Token(Token = "0x4000158")]
public static readonly Encoder ScanMethod;
/// <summary>Represents an <see cref="T:System.Drawing.Imaging.Encoder" /> object that is initialized with the globally unique identifier for the version parameter category.</summary>
// Token: 0x04000159 RID: 345
[Token(Token = "0x4000159")]
public static readonly Encoder Version;
/// <summary>Represents an <see cref="T:System.Drawing.Imaging.Encoder" /> object that is initialized with the globally unique identifier for the render method parameter category.</summary>
// Token: 0x0400015A RID: 346
[Token(Token = "0x400015A")]
public static readonly Encoder RenderMethod;
/// <summary>Gets an <see cref="T:System.Drawing.Imaging.Encoder" /> object that is initialized with the globally unique identifier for the quality parameter category.</summary>
// Token: 0x0400015B RID: 347
[Token(Token = "0x400015B")]
public static readonly Encoder Quality;
/// <summary>Represents an <see cref="T:System.Drawing.Imaging.Encoder" /> object that is initialized with the globally unique identifier for the transformation parameter category.</summary>
// Token: 0x0400015C RID: 348
[Token(Token = "0x400015C")]
public static readonly Encoder Transformation;
/// <summary>Represents an <see cref="T:System.Drawing.Imaging.Encoder" /> object that is initialized with the globally unique identifier for the luminance table parameter category.</summary>
// Token: 0x0400015D RID: 349
[Token(Token = "0x400015D")]
public static readonly Encoder LuminanceTable;
/// <summary>An <see cref="T:System.Drawing.Imaging.Encoder" /> object that is initialized with the globally unique identifier for the chrominance table parameter category.</summary>
// Token: 0x0400015E RID: 350
[Token(Token = "0x400015E")]
public static readonly Encoder ChrominanceTable;
/// <summary>Represents an <see cref="T:System.Drawing.Imaging.Encoder" /> object that is initialized with the globally unique identifier for the save flag parameter category.</summary>
// Token: 0x0400015F RID: 351
[Token(Token = "0x400015F")]
public static readonly Encoder SaveFlag;
// Token: 0x04000160 RID: 352
[FieldOffset(Offset = "0x10")]
[Token(Token = "0x4000160")]
private Guid _guid;
}
}