Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
UriSyntaxFlags.cs
Go to the documentation of this file.
1namespace System;
2
3[Flags]
4internal enum UriSyntaxFlags
5{
6 None = 0,
10 MayHavePort = 8,
11 MayHavePath = 0x10,
12 MayHaveQuery = 0x20,
13 MayHaveFragment = 0x40,
14 AllowEmptyHost = 0x80,
15 AllowUncHost = 0x100,
16 AllowDnsHost = 0x200,
17 AllowIPv4Host = 0x400,
18 AllowIPv6Host = 0x800,
19 AllowAnInternetHost = 0xE00,
20 AllowAnyOtherHost = 0x1000,
21 FileLikeUri = 0x2000,
22 MailToLikeUri = 0x4000,
23 V1_UnknownUri = 0x10000,
24 SimpleUserSyntax = 0x20000,
25 BuiltInSyntax = 0x40000,
26 ParserSchemeOnly = 0x80000,
27 AllowDOSPath = 0x100000,
28 PathIsRooted = 0x200000,
29 ConvertPathSlashes = 0x400000,
30 CompressPath = 0x800000,
31 CanonicalizeAsFilePath = 0x1000000,
32 UnEscapeDotsAndSlashes = 0x2000000,
33 AllowIdn = 0x4000000,
34 AllowIriParsing = 0x10000000
35}