25 lines
775 B
C#
25 lines
775 B
C#
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
|
|
}
|
|
}
|