using System; using System.ComponentModel; using Cpp2IlInjected; namespace System.Drawing.Imaging { /// Specifies the file format of the image. Not inheritable. // Token: 0x02000043 RID: 67 [Token(Token = "0x2000043")] [TypeConverter] public sealed class ImageFormat { /// Initializes a new instance of the class by using the specified structure. /// The structure that specifies a particular image format. // Token: 0x06000157 RID: 343 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000157")] [Address(RVA = "0x10EF110", Offset = "0x10EE110", VA = "0x1810EF110")] public ImageFormat(Guid guid) { } // Token: 0x06000158 RID: 344 RVA: 0x00002053 File Offset: 0x00000253 [Token(Token = "0x6000158")] [Address(RVA = "0x10F5C40", Offset = "0x10F4C40", VA = "0x1810F5C40")] private ImageFormat(string name, string guid) { } /// Returns a value that indicates whether the specified object is an object that is equivalent to this object. /// The object to test. /// /// if is an object that is equivalent to this object; otherwise, . // Token: 0x06000159 RID: 345 RVA: 0x00002760 File Offset: 0x00000960 [Token(Token = "0x6000159")] [Address(RVA = "0x10F5AE0", Offset = "0x10F4AE0", VA = "0x1810F5AE0", Slot = "0")] public override bool Equals(object o) { return default(bool); } /// Returns a hash code value that represents this object. /// A hash code that represents this object. // Token: 0x0600015A RID: 346 RVA: 0x00002778 File Offset: 0x00000978 [Token(Token = "0x600015A")] [Address(RVA = "0x10F5B70", Offset = "0x10F4B70", VA = "0x1810F5B70", Slot = "2")] public override int GetHashCode() { return 0; } /// Converts this object to a human-readable string. /// A string that represents this object. // Token: 0x0600015B RID: 347 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x600015B")] [Address(RVA = "0x10F5B80", Offset = "0x10F4B80", VA = "0x1810F5B80", Slot = "3")] public override string ToString() { return null; } /// Gets a structure that represents this object. /// A structure that represents this object. // Token: 0x17000030 RID: 48 // (get) Token: 0x0600015C RID: 348 RVA: 0x00002790 File Offset: 0x00000990 [Token(Token = "0x17000030")] public Guid Guid { [Token(Token = "0x600015C")] [Address(RVA = "0x814AB0", Offset = "0x813AB0", VA = "0x180814AB0")] get { return default(Guid); } } /// Gets the Windows icon image format. /// An object that indicates the Windows icon image format. // Token: 0x17000031 RID: 49 // (get) Token: 0x0600015D RID: 349 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000031")] public static ImageFormat Icon { [Token(Token = "0x600015D")] [Address(RVA = "0x10F5CA0", Offset = "0x10F4CA0", VA = "0x1810F5CA0")] get { return null; } } /// Gets the Joint Photographic Experts Group (JPEG) image format. /// An object that indicates the JPEG image format. // Token: 0x17000032 RID: 50 // (get) Token: 0x0600015E RID: 350 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000032")] public static ImageFormat Jpeg { [Token(Token = "0x600015E")] [Address(RVA = "0x10F5E60", Offset = "0x10F4E60", VA = "0x1810F5E60")] get { return null; } } /// Gets the format of a bitmap in memory. /// An object that indicates the format of a bitmap in memory. // Token: 0x17000033 RID: 51 // (get) Token: 0x0600015F RID: 351 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000033")] public static ImageFormat MemoryBmp { [Token(Token = "0x600015F")] [Address(RVA = "0x10F6020", Offset = "0x10F5020", VA = "0x1810F6020")] get { return null; } } /// Gets the W3C Portable Network Graphics (PNG) image format. /// An object that indicates the PNG image format. // Token: 0x17000034 RID: 52 // (get) Token: 0x06000160 RID: 352 RVA: 0x00002050 File Offset: 0x00000250 [Token(Token = "0x17000034")] public static ImageFormat Png { [Token(Token = "0x6000160")] [Address(RVA = "0x10F61E0", Offset = "0x10F51E0", VA = "0x1810F61E0")] get { return null; } } // Token: 0x040001A9 RID: 425 [FieldOffset(Offset = "0x10")] [Token(Token = "0x40001A9")] private Guid guid; // Token: 0x040001AA RID: 426 [FieldOffset(Offset = "0x20")] [Token(Token = "0x40001AA")] private string name; // Token: 0x040001AB RID: 427 [Token(Token = "0x40001AB")] private static object locker; // Token: 0x040001AC RID: 428 [Token(Token = "0x40001AC")] private static ImageFormat PngImageFormat; // Token: 0x040001AD RID: 429 [Token(Token = "0x40001AD")] private static ImageFormat MemoryBmpImageFormat; // Token: 0x040001AE RID: 430 [Token(Token = "0x40001AE")] private static ImageFormat IconImageFormat; // Token: 0x040001AF RID: 431 [Token(Token = "0x40001AF")] private static ImageFormat JpegImageFormat; } }