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

ValidationPropertyAttribute.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: 01281a6f00292f56eab4cb2239bd7c1d2f62f1ef (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.ValidationPropertyAttribute.cs
//
// Duncan Mak  (duncan@ximian.com)
//
// (C) Ximian, Inc.
//

using System;

namespace System.Web.UI {
	[AttributeUsage (AttributeTargets.Class)]
	public sealed class ValidationPropertyAttribute : Attribute
	{
		string name;

		public ValidationPropertyAttribute (string name)
		{
			this.name = name;
		}

		public string Name {
			get { return name; }
		}
	}
}