using System;
using Cpp2IlInjected;
namespace System
{
/// Defines the kinds of s for the and several methods.
// Token: 0x02000080 RID: 128
[Token(Token = "0x2000080")]
public enum UriKind
{
/// The kind of the Uri is indeterminate.
// Token: 0x040001BE RID: 446
[Token(Token = "0x40001BE")]
RelativeOrAbsolute,
/// The Uri is an absolute Uri.
// Token: 0x040001BF RID: 447
[Token(Token = "0x40001BF")]
Absolute,
/// The Uri is a relative Uri.
// Token: 0x040001C0 RID: 448
[Token(Token = "0x40001C0")]
Relative
}
}