Files
27Aug2021-Cpp2IL-Dump/System/UriIdnScope.cs
T
niko c12fbe3fc6 m
2026-04-12 16:51:38 +02:00

25 lines
1.1 KiB
C#

using System;
using Cpp2IlInjected;
namespace System
{
/// <summary>Provides the possible values for the configuration setting of the <see cref="T:System.Configuration.IdnElement" /> in the <see cref="N:System.Configuration" /> namespace.</summary>
// Token: 0x02000083 RID: 131
[Token(Token = "0x2000083")]
public enum UriIdnScope
{
/// <summary>This value will not convert any Unicode domain names to use Punycode. This is the default value which is consistent with the .NET Framework 2.0 behavior.</summary>
// Token: 0x040001D8 RID: 472
[Token(Token = "0x40001D8")]
None,
/// <summary>This value will convert all external Unicode domain names to use the Punycode equivalents (IDN names). In this case to handle international names on the local Intranet, the DNS servers that are used for the Intranet should support Unicode names.</summary>
// Token: 0x040001D9 RID: 473
[Token(Token = "0x40001D9")]
AllExceptIntranet,
/// <summary>This value will convert any Unicode domain names to their Punycode equivalents (IDN names).</summary>
// Token: 0x040001DA RID: 474
[Token(Token = "0x40001DA")]
All
}
}