Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IgnoreUnknownContentAttribute.cs « System.Web.UI « System.Web « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b883362db4d83133f8897ce0a1f198bafc1c6bae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
// System.Web.UI.IgnoreUnknownContentAttribute.cs
//
// Author:
//   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
//
// (C) 2003 Andreas Nahr
//

using System;

namespace System.Web.UI {

	[AttributeUsage (AttributeTargets.Property)]
	internal sealed class IgnoreUnknownContentAttribute : Attribute
	{
		
		public IgnoreUnknownContentAttribute ()
		{
		}
	}
}