New test.
[mono.git] / mcs / class / System.Web / System.Web.Configuration / FormsAuthPasswordFormat.cs
index 1ef62e8237e24af12db81afc0b8b91ec64b7032b..91132fc35f00c0938050d049103ef8a30266c205 100644 (file)
@@ -1,4 +1,9 @@
-
+//
+// System.Web.Configuration.FormsAuthPasswordFormat.cs
+//
+// Author: Duncan Mak (duncan@novell.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
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-/* System.Web.Configuration
- * Authors:
- *   Leen Toelen (toelen@hotmail.com)
- *  Copyright (C) 2001 Leen Toelen
-*/
+
+using System;
 
 namespace System.Web.Configuration {
 
-       /// <summary>
-       /// Defines the password encryption format.
-       /// </summary>
-       public enum FormsAuthPasswordFormat{
-               Clear, 
+#if !NET_2_0
+       [Serializable]
+#endif
+       public enum FormsAuthPasswordFormat
+       {
+               Clear,
                SHA1,
                MD5
        }
-
-} //namespace System.Web.Configuration
+}