| 1234567891011121314151617181920212223 |
- //
- // System.Web.UI.IgnoreUnknownContentAttribute.cs
- //
- // Author:
- // Andreas Nahr ([email protected])
- //
- // (C) 2003 Andreas Nahr
- //
- using System;
- namespace System.Web.UI {
- [AttributeUsage (AttributeTargets.Property)]
- internal sealed class IgnoreUnknownContentAttribute : Attribute
- {
-
- public IgnoreUnknownContentAttribute ()
- {
- }
- }
- }
-
|