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

HtmlControlPersistableAttribute.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: b19c6e8ac13851ac33bd676271356eb4d37ef619 (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
28
29
//
// System.Web.UI.HtmlControlPersistableAttribute.cs
//
// Author:
//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
// (C) 2003 Andreas Nahr
//

using System;

namespace System.Web.UI {

	[AttributeUsage (AttributeTargets.Property)]
	internal sealed class HtmlControlPersistableAttribute : Attribute
	{
		bool persist;
		
		public HtmlControlPersistableAttribute (bool persist)
		{
			this.persist = persist;
		}

		public bool Persist {
			get { return persist; }
		}
	}
}