Author: toshok
Date: 2005-11-09 18:22:51 -0500 (Wed, 09 Nov 2005)
New Revision: 52806

Added:
   trunk/mcs/class/System.Web/System.Web.UI/ViewStateEncryptionMode.cs
Modified:
   trunk/mcs/class/System.Web/System.Web.UI/ChangeLog
Log:
2005-11-09  Chris Toshok  <[EMAIL PROTECTED]>

        * ViewStateEncryptionMode.cs: new 2.0 enum.



Modified: trunk/mcs/class/System.Web/System.Web.UI/ChangeLog
===================================================================
--- trunk/mcs/class/System.Web/System.Web.UI/ChangeLog  2005-11-09 22:15:16 UTC 
(rev 52805)
+++ trunk/mcs/class/System.Web/System.Web.UI/ChangeLog  2005-11-09 23:22:51 UTC 
(rev 52806)
@@ -1,3 +1,7 @@
+2005-11-09  Chris Toshok  <[EMAIL PROTECTED]>
+
+       * ViewStateEncryptionMode.cs: new 2.0 enum.
+
 2005-11-08 Gonzalo Paniagua Javier <[EMAIL PROTECTED]>
 
        * TemplateParser.cs: fixes #76423. Not tested properly.

Added: trunk/mcs/class/System.Web/System.Web.UI/ViewStateEncryptionMode.cs
===================================================================
--- trunk/mcs/class/System.Web/System.Web.UI/ViewStateEncryptionMode.cs 
2005-11-09 22:15:16 UTC (rev 52805)
+++ trunk/mcs/class/System.Web/System.Web.UI/ViewStateEncryptionMode.cs 
2005-11-09 23:22:51 UTC (rev 52806)
@@ -0,0 +1,43 @@
+//
+// System.Web.Configuration.ViewStateEncryptionMode
+//
+// Authors:
+//     Chris Toshok ([EMAIL PROTECTED])
+//
+// (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
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+#if NET_2_0
+
+namespace System.Web.UI
+{
+       public enum ViewStateEncryptionMode
+       {
+               Auto,
+               Always,
+               Never
+       }
+}
+
+#endif

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to