CodeRenderBuilder.cs 391 B

12345678910111213141516171819202122
  1. //
  2. // System.Web.UI.CodeRenderBuilder
  3. //
  4. // Authors:
  5. // Gonzalo Paniagua Javier ([email protected])
  6. //
  7. // (C) 2003 Ximian, Inc. (http://www.ximian.com)
  8. //
  9. using System.Web.Compilation;
  10. namespace System.Web.UI
  11. {
  12. sealed class CodeRenderBuilder : CodeBuilder
  13. {
  14. public CodeRenderBuilder (string code, bool isAssign, ILocation location)
  15. : base (code, isAssign, location)
  16. {
  17. }
  18. }
  19. }