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

TemplateContainerAttribute.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 854bcf1419ea806a2f446ebf8a201de91c0a59e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
//
// System.Web.UI.TemplateContainerAttribute.cs
//
// Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

using System;

namespace System.Web.UI {

	[AttributeUsage (AttributeTargets.Property)]
	public sealed class TemplateContainerAttribute : Attribute
	{
		Type containerType;
		
		public TemplateContainerAttribute (Type containerType)
		{
			this.containerType = containerType;
		}

		public Type ContainerType {
			get { return containerType; }
		}
	}
}