DesignTimeParseData.cs 442 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * Namespace: System.Web.UI
  3. * Class: DesignTimeParseData
  4. *
  5. * Author: Gaurav Vaish
  6. * Contact: <[email protected]>
  7. * Status: ?%
  8. *
  9. * (C) Gaurav Vaish (2001)
  10. */
  11. using System;
  12. using System.Web;
  13. namespace System.Web.UI
  14. {
  15. public sealed class DesignTimeParseData
  16. {
  17. private static bool inDesigner = false;
  18. internal static bool InDesigner
  19. {
  20. get
  21. {
  22. return inDesigner;
  23. }
  24. }
  25. }
  26. }