using System;
namespace System
{
/// Controls how URI information is escaped.
/// 1
// Token: 0x020002FF RID: 767
public enum UriFormat
{
/// Escaping is performed according to the rules in RFC 2396.
// Token: 0x0400162C RID: 5676
UriEscaped = 1,
/// No escaping is performed.
// Token: 0x0400162D RID: 5677
Unescaped,
/// Characters that have a reserved meaning in the requested URI components remain escaped. All others are not escaped. See Remarks.
// Token: 0x0400162E RID: 5678
SafeUnescaped
}
}