This commit is contained in:
niko
2026-04-12 16:51:38 +02:00
parent 1b6f6d81d0
commit c12fbe3fc6
17828 changed files with 2994770 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
namespace System
{
/// <summary>Controls how URI information is escaped.</summary>
// Token: 0x02000082 RID: 130
[Token(Token = "0x2000082")]
public enum UriFormat
{
/// <summary>Escaping is performed according to the rules in RFC 2396.</summary>
// Token: 0x040001D4 RID: 468
[Token(Token = "0x40001D4")]
UriEscaped = 1,
/// <summary>No escaping is performed.</summary>
// Token: 0x040001D5 RID: 469
[Token(Token = "0x40001D5")]
Unescaped,
/// <summary>Characters that have a reserved meaning in the requested URI components remain escaped. All others are not escaped.</summary>
// Token: 0x040001D6 RID: 470
[Token(Token = "0x40001D6")]
SafeUnescaped
}
}