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

IgnoreMemberAttribute.cs « System.Management.Instrumentation « System.Management « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: af40c237263f4095e585ce5e5e592f99c9f6bdc0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//
// System.Management.Instrumentation.IgnoreMemberAttribute
//
// Authors:
//      Martin Willemoes Hansen (mwh@sysrq.dk)
//
// (C) 2003 Martin Willemoes Hansen
//

namespace System.Management.Instrumentation
{
	[AttributeUsage (AttributeTargets.Method | 
			 AttributeTargets.Property | 
			 AttributeTargets.Field)]
	public class IgnoreMemberAttribute : Attribute {
		[MonoTODO]
		public IgnoreMemberAttribute() 
		{
		}
	}
}