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
+25
View File
@@ -0,0 +1,25 @@
using System;
using Cpp2IlInjected;
namespace System.Net
{
/// <summary>Represents the file compression and decompression encoding format to be used to compress the data received in response to an <see cref="T:System.Net.HttpWebRequest" />.</summary>
// Token: 0x02000282 RID: 642
[Token(Token = "0x2000282")]
[Flags]
public enum DecompressionMethods
{
/// <summary>Do not use compression.</summary>
// Token: 0x04000978 RID: 2424
[Token(Token = "0x4000978")]
None = 0,
/// <summary>Use the gZip compression-decompression algorithm.</summary>
// Token: 0x04000979 RID: 2425
[Token(Token = "0x4000979")]
GZip = 1,
/// <summary>Use the deflate compression-decompression algorithm.</summary>
// Token: 0x0400097A RID: 2426
[Token(Token = "0x400097A")]
Deflate = 2
}
}