// UriPartial.cs // // This code was automatically generated from // ECMA CLI XML Library Specification. // Generator: libgen.xsl // Source file: AllTypes.xml // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml // // (C) 2001 Ximian, Inc. http://www.ximian.com namespace System { /// /// Specifies URI components. /// /// /// /// The enumeration defines the values that are passed to the /// method. /// /// public enum UriPartial { /// Specifies the scheme component of a URI. Scheme = 0, /// /// Specifies the authority component of a URI. /// Authority = 1, /// /// Specifies the path component of a URI. /// Path = 2, } // UriPartial } // System