Files
2026-06-04 11:42:34 +02:00

20 lines
633 B
C#

using System;
namespace System
{
/// <summary>Defines the kinds of <see cref="T:System.Uri" />s for the <see cref="M:System.Uri.IsWellFormedUriString(System.String,System.UriKind)" /> and several <see cref="Overload:System.Uri.#ctor" /> methods.</summary>
// Token: 0x02000303 RID: 771
public enum UriKind
{
/// <summary>The kind of the Uri is indeterminate.</summary>
// Token: 0x0400163A RID: 5690
RelativeOrAbsolute,
/// <summary>The Uri is an absolute Uri.</summary>
// Token: 0x0400163B RID: 5691
Absolute,
/// <summary>The Uri is a relative Uri.</summary>
// Token: 0x0400163C RID: 5692
Relative
}
}