IAttributeAccessor.cs 349 B

1234567891011121314151617181920
  1. //
  2. // System.Web.UI.IAttributeAccessor.cs
  3. //
  4. // Author:
  5. // Bob Smith <[email protected]>
  6. //
  7. // (C) Bob Smith
  8. //
  9. using System;
  10. using System.Web;
  11. namespace System.Web.UI
  12. {
  13. public interface IAttributeAccessor
  14. {
  15. string GetAttribute(string key);
  16. void SetAttribute(string key, string value);
  17. }
  18. }