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/PartialCachingAttribute.cs')
-rwxr-xr-xmcs/class/System.Web/System.Web.UI/PartialCachingAttribute.cs51
1 files changed, 0 insertions, 51 deletions
diff --git a/mcs/class/System.Web/System.Web.UI/PartialCachingAttribute.cs b/mcs/class/System.Web/System.Web.UI/PartialCachingAttribute.cs
deleted file mode 100755
index be490317e8b..00000000000
--- a/mcs/class/System.Web/System.Web.UI/PartialCachingAttribute.cs
+++ /dev/null
@@ -1,51 +0,0 @@
-//
-// System.Web.UI.PartialCachingAttribute.cs
-//
-// Duncan Mak (duncan@ximian.com)
-//
-// (C) Ximian, Inc.
-//
-
-using System;
-
-namespace System.Web.UI {
-
- [AttributeUsage (AttributeTargets.Class)]
- public sealed class PartialCachingAttribute : Attribute
- {
- int duration;
- string varyByControls;
- string varyByCustom;
- string varyByParams;
-
- public PartialCachingAttribute (int duration)
- {
- this.duration = duration;
- }
-
- public PartialCachingAttribute (int duration, string varyByParams,
- string varyByControls, string varyByCustom)
- {
- this.duration = duration;
- this.varyByParams = varyByParams;
- this.varyByControls = varyByControls;
- this.varyByCustom = varyByCustom;
- }
-
- public int Duration {
- get { return duration; }
- }
-
- public string VaryByParams {
- get { return varyByParams; }
- }
-
- public string VaryByControls {
- get { return varyByControls; }
- }
-
- public string VaryByCustom {
- get { return varyByCustom; }
- }
- }
-}