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

FieldAttributes.cs « System.Reflection « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5462fc2b1021c31625944ceb22fd9d5ddac44096 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
// FieldAttributes.cs
//
// This code was automatically generated from
// ECMA CLI XML Library Specification.
// Generator: libgen.xsl [1.0; (C) Sergey Chaban (serge@wildwestsoftware.com)]
// Created: Wed, 5 Sep 2001 06:39:12 UTC
// Source file: all.xml
// URL: http://devresource.hp.com/devresource/Docs/TechPapers/CSharp/all.xml
//
// (C) 2001 Ximian, Inc.  http://www.ximian.com


namespace System.Reflection {


	/// <summary>
	/// </summary>
	public enum FieldAttributes {

		/// <summary>
		/// </summary>
		FieldAccessMask = 7,

		/// <summary>
		/// </summary>
		PrivateScope = 0x0,

		/// <summary>
		/// </summary>
		Private = 0x1,

		/// <summary>
		/// </summary>
		FamANDAssem = 0x2,

		/// <summary>
		/// </summary>
		Assembly = 0x3,

		/// <summary>
		/// </summary>
		Family = 0x4,

		/// <summary>
		/// </summary>
		FamORAssem = 0x5,

		/// <summary>
		/// </summary>
		Public = 0x6,

		/// <summary>
		/// </summary>
		Static = 0x10,

		/// <summary>
		/// </summary>
		InitOnly = 0x20,

		/// <summary>
		/// </summary>
		Literal = 0x40,

		/// <summary>
		/// </summary>
		NotSerialized = 0x80,

		/// <summary>
		/// </summary>
		HasFieldRVA = 0x100,

		/// <summary>
		/// </summary>
		SpecialName = 0x200,

		/// <summary>
		/// </summary>
		RTSpecialName = 0x400,

		/// <summary>
		/// </summary>
		HasFieldMarshal = 0x1000,	

		/// <summary>
		/// </summary>
		PinvokeImpl = 0x2000,

		/// <summary>
		/// </summary>
		// HasSecurity = 0x4000,

		/// <summary>
		/// </summary>
		HasDefault = 0x8000,

		/// <summary>
		/// </summary>
		ReservedMask = HasDefault | HasFieldMarshal | RTSpecialName | HasFieldRVA,

	} // FieldAttributes

} // System.Reflection