This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
+60
View File
@@ -0,0 +1,60 @@
using System;
namespace System
{
/// <summary>Specifies the parts of a <see cref="T:System.Uri" />.</summary>
/// <filterpriority>1</filterpriority>
// Token: 0x020002FE RID: 766
[Flags]
public enum UriComponents
{
/// <summary>The <see cref="P:System.Uri.Scheme" /> data.</summary>
// Token: 0x0400161B RID: 5659
Scheme = 1,
/// <summary>The <see cref="P:System.Uri.UserInfo" /> data.</summary>
// Token: 0x0400161C RID: 5660
UserInfo = 2,
/// <summary>The <see cref="P:System.Uri.Host" /> data.</summary>
// Token: 0x0400161D RID: 5661
Host = 4,
/// <summary>The <see cref="P:System.Uri.Port" /> data.</summary>
// Token: 0x0400161E RID: 5662
Port = 8,
/// <summary>The <see cref="P:System.Uri.LocalPath" /> data.</summary>
// Token: 0x0400161F RID: 5663
Path = 16,
/// <summary>The <see cref="P:System.Uri.Query" /> data.</summary>
// Token: 0x04001620 RID: 5664
Query = 32,
/// <summary>The <see cref="P:System.Uri.Fragment" /> data.</summary>
// Token: 0x04001621 RID: 5665
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: 0x04001622 RID: 5666
StrongPort = 128,
/// <summary>Specifies that the delimiter should be included.</summary>
// Token: 0x04001623 RID: 5667
KeepDelimiter = 1073741824,
/// <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: 0x04001624 RID: 5668
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: 0x04001625 RID: 5669
StrongAuthority = 134,
/// <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: 0x04001626 RID: 5670
AbsoluteUri = 127,
/// <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: 0x04001627 RID: 5671
PathAndQuery = 48,
/// <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: 0x04001628 RID: 5672
HttpRequestUrl = 61,
/// <summary>The <see cref="P:System.Uri.Scheme" />, <see cref="P:System.Uri.Host" />, and <see cref="P:System.Uri.Port" /> data.</summary>
// Token: 0x04001629 RID: 5673
SchemeAndServer = 13,
/// <summary>The complete <see cref="T:System.Uri" /> context that is needed for Uri Serializers. The context includes the IPv6 scope.</summary>
// Token: 0x0400162A RID: 5674
SerializationInfoString = -2147483648
}
}