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
+23
View File
@@ -0,0 +1,23 @@
using System;
namespace System
{
/// <summary>Defines the parts of a URI for the <see cref="M:System.Uri.GetLeftPart(System.UriPartial)" /> method.</summary>
/// <filterpriority>2</filterpriority>
// Token: 0x02000305 RID: 773
public enum UriPartial
{
/// <summary>The scheme segment of the URI.</summary>
// Token: 0x04001644 RID: 5700
Scheme,
/// <summary>The scheme and authority segments of the URI.</summary>
// Token: 0x04001645 RID: 5701
Authority,
/// <summary>The scheme, authority, and path segments of the URI.</summary>
// Token: 0x04001646 RID: 5702
Path,
/// <summary>The scheme, authority, path, and query segments of the URI.</summary>
// Token: 0x04001647 RID: 5703
Query
}
}