21 lines
638 B
C#
21 lines
638 B
C#
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
|
|
}
|
|
}
|