2010-06-22 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / corlib / System.Globalization / DateTimeStyles.cs
index a8bd3935cd2a0028bc7d7f3e159101cbb6ffc8b6..a61d31595a3379cc62db415077a60a6aca6550c2 100644 (file)
@@ -8,9 +8,7 @@
 // URL: http://msdn.microsoft.com/net/ecma/AllTypes.xml
 //
 // (C) 2001 Ximian, Inc.  http://www.ximian.com
-
-//
-// Copyright (C) 2004 Novell, Inc (http://www.novell.com)
+// Copyright (C) 2004-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
 
 namespace System.Globalization {
 
-
-       /// <summary>
-       /// </summary>
        [Flags]
+       [Serializable]
+       [System.Runtime.InteropServices.ComVisible(true)]
        public enum DateTimeStyles {
-
-               /// <summary>
-               /// </summary>
-               None = 0x00000000,
-
-               /// <summary>
-               /// </summary>
-               AllowLeadingWhite = 0x00000001,
-
-               /// <summary>
-               /// </summary>
-               AllowTrailingWhite = 0x00000002,
-
-               /// <summary>
-               /// </summary>
-               AllowInnerWhite = 0x00000004,
-
-               /// <summary>
-               /// </summary>
-               AllowWhiteSpaces = AllowLeadingWhite | AllowTrailingWhite | AllowInnerWhite,
-
-               /// <summary>
-               /// </summary>
+               None                 = 0x00000000,
+               AllowLeadingWhite    = 0x00000001,
+               AllowTrailingWhite   = 0x00000002,
+               AllowInnerWhite      = 0x00000004,
+               AllowWhiteSpaces     = AllowLeadingWhite | AllowTrailingWhite | AllowInnerWhite,
                NoCurrentDateDefault = 0x00000008,
-
-               /// <summary>
-               /// </summary>
-               AdjustToUniversal = 0x00000010,
+               AdjustToUniversal    = 0x00000010,
+               AssumeLocal          = 0x00000020,
+               AssumeUniversal      = 0x00000040,
+               RoundtripKind        = 0x00000080,
        } // DateTimeStyles
 
 } // System.Globalization