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

MemberAttributes.cs « System.CodeDom « System « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5097375c798848cb52ad4d11bb8546cef82a836a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
//
// System.CodeDom MemberAttributes Enum implementation
//
// Author:
//   Sean MacIsaac (macisaac@ximian.com)
//   Daniel Stodden (stodden@in.tum.de)
//
// (C) 2001 Ximian, Inc.
//

using System.Runtime.InteropServices;

namespace System.CodeDom {

	[Serializable]
	[ComVisible(true)]
	public enum MemberAttributes {
		Abstract =		0x00000001,
		Final =			0x00000002,
		Static =		0x00000003,
		Override =		0x00000004,
		Const =			0x00000005,
		ScopeMask =		0x0000000F,

		New =			0x00000010,
		VTableMask =		0x000000F0,

		Overloaded =		0x00000100,

		Assembly =		0x00001000, // internal
		FamilyAndAssembly =	0x00002000, // protected AND internal
		Family =		0x00003000, // protected
		FamilyOrAssembly =	0x00004000, // protected internal
		Private =		0x00005000, // private
		Public =		0x00006000, // public
		AccessMask =		0x0000F000
	}
}