| 1234567891011121314151617181920212223242526272829 |
- //
- // System.Web.UI.HtmlControlPersistableAttribute.cs
- //
- // Author:
- // Andreas Nahr ([email protected])
- //
- // (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; }
- }
- }
- }
-
|