using System;
namespace System
{
/// Defines the kinds of s for the and several methods.
// Token: 0x02000303 RID: 771
public enum UriKind
{
/// The kind of the Uri is indeterminate.
// Token: 0x0400163A RID: 5690
RelativeOrAbsolute,
/// The Uri is an absolute Uri.
// Token: 0x0400163B RID: 5691
Absolute,
/// The Uri is a relative Uri.
// Token: 0x0400163C RID: 5692
Relative
}
}