IgnoreUnknownContentAttribute.cs 367 B

1234567891011121314151617181920212223
  1. //
  2. // System.Web.UI.IgnoreUnknownContentAttribute.cs
  3. //
  4. // Author:
  5. // Andreas Nahr ([email protected])
  6. //
  7. // (C) 2003 Andreas Nahr
  8. //
  9. using System;
  10. namespace System.Web.UI {
  11. [AttributeUsage (AttributeTargets.Property)]
  12. internal sealed class IgnoreUnknownContentAttribute : Attribute
  13. {
  14. public IgnoreUnknownContentAttribute ()
  15. {
  16. }
  17. }
  18. }