using System;
namespace System
{
/// Defines the parts of a URI for the method.
/// 2
// Token: 0x02000305 RID: 773
public enum UriPartial
{
/// The scheme segment of the URI.
// Token: 0x04001644 RID: 5700
Scheme,
/// The scheme and authority segments of the URI.
// Token: 0x04001645 RID: 5701
Authority,
/// The scheme, authority, and path segments of the URI.
// Token: 0x04001646 RID: 5702
Path,
/// The scheme, authority, path, and query segments of the URI.
// Token: 0x04001647 RID: 5703
Query
}
}