* Page.cs: Set the cache's duration.
[mono.git] / mcs / class / System.Web / System.Web.UI / TemplateContainerAttribute.cs
1 //
2 // System.Web.UI.TemplateContainerAttribute.cs
3 //
4 // Duncan Mak  (duncan@ximian.com)
5 //
6 // (C) Ximian, Inc.
7 //
8
9 using System;
10
11 namespace System.Web.UI {
12
13         [AttributeUsage (AttributeTargets.Property)]
14         public sealed class TemplateContainerAttribute : Attribute
15         {
16                 Type containerType;
17                 
18                 public TemplateContainerAttribute (Type containerType)
19                 {
20                         this.containerType = containerType;
21                 }
22
23                 public Type ContainerType {
24                         get { return containerType; }
25                 }
26         }
27 }