2005-10-17 Sebastien Pouliot <sebastien@ximian.com>
[mono.git] / mcs / class / System / System / UriPartial.cs
index c1160491687722b77eb41dcef0e99f23448bcecb..07a0a2c4a3256f2f2fd54ba39c193c247bab9d62 100644 (file)
@@ -8,7 +8,7 @@
 // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
 //
 // (C) 2001 Ximian, Inc.  http://www.ximian.com
-
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
 //
 // Permission is hereby granted, free of charge, to any person obtaining
 // a copy of this software and associated documentation files (the
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
 
-
 namespace System {
 
-
-       /// <summary>
-       /// </summary>
        public enum UriPartial {
 
-               /// <summary>
-               /// </summary>
                Scheme = 0,
-
-               /// <summary>
-               /// </summary>
                Authority = 1,
-
-               /// <summary>
-               /// </summary>
                Path = 2,
-       } // UriPartial
-
-} // System
+#if NET_2_0
+               Query
+#endif
+       }
+}