This commit is contained in:
niko
2026-04-11 22:19:20 +02:00
parent 45b857ff11
commit 8fc35183db
17034 changed files with 2863552 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
using System;
using Cpp2IlInjected;
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: 0x02000080 RID: 128
[Token(Token = "0x2000080")]
public enum UriKind
{
/// <summary>The kind of the Uri is indeterminate.</summary>
// Token: 0x040001BE RID: 446
[Token(Token = "0x40001BE")]
RelativeOrAbsolute,
/// <summary>The Uri is an absolute Uri.</summary>
// Token: 0x040001BF RID: 447
[Token(Token = "0x40001BF")]
Absolute,
/// <summary>The Uri is a relative Uri.</summary>
// Token: 0x040001C0 RID: 448
[Token(Token = "0x40001C0")]
Relative
}
}