IUserControlDesignAccessor.cs 323 B

1234567891011121314151617
  1. //
  2. // System.Web.UI.IUserControlDesignerAccessor.cs
  3. //
  4. // Author:
  5. // Andreas Nahr ([email protected])
  6. //
  7. // (C) 2003 Andreas Nahr
  8. //
  9. namespace System.Web.UI
  10. {
  11. public interface IUserControlDesignerAccessor
  12. {
  13. string InnerText { get; set; }
  14. string TagName { get; set; }
  15. }
  16. }