| 1234567891011121314151617181920 |
- //
- // System.Web.UI.IAttributeAccessor.cs
- //
- // Author:
- // Bob Smith <[email protected]>
- //
- // (C) Bob Smith
- //
- using System;
- using System.Web;
- namespace System.Web.UI
- {
- public interface IAttributeAccessor
- {
- string GetAttribute(string key);
- void SetAttribute(string key, string value);
- }
- }
|