Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Web/System.Web.UI/PersistChildrenAttribute.cs')
-rwxr-xr-xmcs/class/System.Web/System.Web.UI/PersistChildrenAttribute.cs50
1 files changed, 0 insertions, 50 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/PersistChildrenAttribute.cs b/mcs/class/System.Web/System.Web.UI/PersistChildrenAttribute.cs
deleted file mode 100755
index a38d49c817f..00000000000
--- a/mcs/class/System.Web/System.Web.UI/PersistChildrenAttribute.cs
+++ /dev/null
@@ -1,50 +0,0 @@
-//
-// System.Web.UI.PersistChildrenAttribute.cs
-//
-// Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc.
-//
-
-using System;
-
-namespace System.Web.UI {
-
- [AttributeUsage (AttributeTargets.Class)]
- public sealed class PersistChildrenAttribute : Attribute
- {
- bool persist;
-
- public PersistChildrenAttribute (bool persist)
- {
- this.persist = persist;
- }
-
- public static readonly PersistChildrenAttribute Default;
- public static readonly PersistChildrenAttribute Yes;
- public static readonly PersistChildrenAttribute No;
-
- public bool Persist {
- get { return persist; }
- }
-
- [MonoTODO]
- public override bool Equals (object obj)
- {
- return false;
- }
-
- [MonoTODO]
- public override int GetHashCode ()
- {
- return 42;
- }
-
- [MonoTODO]
- public override bool IsDefaultAttribute ()
- {
- return false;
- }
- }
-}
-