This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
using System;
namespace System
{
/// <summary>Controls how URI information is escaped.</summary>
/// <filterpriority>1</filterpriority>
// Token: 0x020002FF RID: 767
public enum UriFormat
{
/// <summary>Escaping is performed according to the rules in RFC 2396.</summary>
// Token: 0x0400162C RID: 5676
UriEscaped = 1,
/// <summary>No escaping is performed.</summary>
// Token: 0x0400162D RID: 5677
Unescaped,
/// <summary>Characters that have a reserved meaning in the requested URI components remain escaped. All others are not escaped. See Remarks.</summary>
// Token: 0x0400162E RID: 5678
SafeUnescaped
}
}