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