This commit is contained in:
niko
2026-04-10 22:50:51 +02:00
parent 6d1607d5a2
commit f18d448581
17033 changed files with 2863270 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
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
}
}