Files
Dec2017-Script-Dump/System/UriPartial.cs
T
2026-06-04 11:42:34 +02:00

24 lines
727 B
C#

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
}
}