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
+19
View File
@@ -0,0 +1,19 @@
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
}
}