using System; using Cpp2IlInjected; namespace System { /// Specifies the parts of a . // Token: 0x02000081 RID: 129 [Token(Token = "0x2000081")] [Flags] public enum UriComponents { /// The data. // Token: 0x040001C2 RID: 450 [Token(Token = "0x40001C2")] Scheme = 1, /// The data. // Token: 0x040001C3 RID: 451 [Token(Token = "0x40001C3")] UserInfo = 2, /// The data. // Token: 0x040001C4 RID: 452 [Token(Token = "0x40001C4")] Host = 4, /// The data. // Token: 0x040001C5 RID: 453 [Token(Token = "0x40001C5")] Port = 8, /// The data. // Token: 0x040001C6 RID: 454 [Token(Token = "0x40001C6")] Path = 16, /// The data. // Token: 0x040001C7 RID: 455 [Token(Token = "0x40001C7")] Query = 32, /// The data. // Token: 0x040001C8 RID: 456 [Token(Token = "0x40001C8")] Fragment = 64, /// The data. If no port data is in the and a default port has been assigned to the , the default port is returned. If there is no default port, -1 is returned. // Token: 0x040001C9 RID: 457 [Token(Token = "0x40001C9")] StrongPort = 128, /// The normalized form of the . // Token: 0x040001CA RID: 458 [Token(Token = "0x40001CA")] NormalizedHost = 256, /// Specifies that the delimiter should be included. // Token: 0x040001CB RID: 459 [Token(Token = "0x40001CB")] KeepDelimiter = 1073741824, /// The complete context that is needed for Uri Serializers. The context includes the IPv6 scope. // Token: 0x040001CC RID: 460 [Token(Token = "0x40001CC")] SerializationInfoString = -2147483648, /// The , , , , , , and data. // Token: 0x040001CD RID: 461 [Token(Token = "0x40001CD")] AbsoluteUri = 127, /// The and data. If no port data is in the Uri and a default port has been assigned to the , the default port is returned. If there is no default port, -1 is returned. // Token: 0x040001CE RID: 462 [Token(Token = "0x40001CE")] HostAndPort = 132, /// The , , and data. If no port data is in the and a default port has been assigned to the , the default port is returned. If there is no default port, -1 is returned. // Token: 0x040001CF RID: 463 [Token(Token = "0x40001CF")] StrongAuthority = 134, /// The , , and data. // Token: 0x040001D0 RID: 464 [Token(Token = "0x40001D0")] SchemeAndServer = 13, /// The , , , , and data. // Token: 0x040001D1 RID: 465 [Token(Token = "0x40001D1")] HttpRequestUrl = 61, /// The and data. Also see . // Token: 0x040001D2 RID: 466 [Token(Token = "0x40001D2")] PathAndQuery = 48 } }