FieldAttributes Enumeration
Specifies flags that describe the attributes of a field.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
| Member name | Description | |
|---|---|---|
![]() ![]() ![]() | FieldAccessMask | Specifies the access level of a given field. |
![]() ![]() ![]() | PrivateScope | Specifies that the field cannot be referenced. |
![]() ![]() ![]() | Private | Specifies that the field is accessible only by the parent type. |
![]() ![]() ![]() | FamANDAssem | Specifies that the field is accessible only by subtypes in this assembly. |
![]() ![]() ![]() | Assembly | Specifies that the field is accessible throughout the assembly. |
![]() ![]() ![]() | Family | Specifies that the field is accessible only by type and subtypes. |
![]() ![]() ![]() | FamORAssem | Specifies that the field is accessible by subtypes anywhere, as well as throughout this assembly. |
![]() ![]() ![]() | Public | Specifies that the field is accessible by any member for whom this scope is visible. |
![]() ![]() ![]() | Static | Specifies that the field represents the defined type, or else it is per-instance. |
![]() ![]() ![]() | InitOnly | Specifies that the field is initialized only, and can be set only in the body of a constructor. |
![]() ![]() ![]() | Literal | Specifies that the field's value is a compile-time (static or early bound) constant. Any attempt to set it throws a FieldAccessException. |
![]() ![]() ![]() | NotSerialized | Specifies that the field does not have to be serialized when the type is remoted. |
![]() ![]() ![]() | SpecialName | Specifies a special method, with the name describing how the method is special. |
![]() ![]() ![]() | PinvokeImpl | Reserved for future use. |
![]() | ReservedMask | Reserved. |
![]() ![]() ![]() | RTSpecialName | Specifies that the common language runtime (metadata internal APIs) should check the name encoding. |
![]() ![]() ![]() | HasFieldMarshal | Specifies that the field has marshaling information. |
![]() ![]() ![]() | HasDefault | Specifies that the field has a default value. |
![]() ![]() ![]() | HasFieldRVA | Specifies that the field has a relative virtual address (RVA). The RVA is the location of the method body in the current image, as an address relative to the start of the image file in which it is located. |
FieldAttributes uses the value from FieldAccessMask to mask off only the parts of the attribute value that pertain to the accessibility. For example, the following code determines if Attributes has the public bit set.
To get the FieldAttributes, first get the class Type. From the Type, get the FieldInfo. From the FieldInfo, get the Attributes.
The enumerated value is a number representing the bitwise OR of the attributes implemented on the field.
In this example, three fields are built and the FieldAttributes values are displayed. A FieldAttributes value can contain more than one attribute, for example, both Public and Literal, as shown in the third field.
using System; using System.Reflection; public class Demo { // Make three fields: // The first field is private. private string m_field = "String A"; // The second field is public. public string Field = "String B"; // The third field is public const (hence also literal and static), // with a default value. public const string FieldC = "String C"; } public class Myfieldattributes { public static void Main() { Console.WriteLine ("\nReflection.FieldAttributes"); Demo d = new Demo(); // Get a Type object for Demo, and a FieldInfo for each of // the three fields. Use the FieldInfo to display field // name, value for the Demo object in d, and attributes. // Type myType = typeof(Demo); FieldInfo fiPrivate = myType.GetField("m_field", BindingFlags.NonPublic | BindingFlags.Instance); DisplayField(d, fiPrivate); FieldInfo fiPublic = myType.GetField("Field", BindingFlags.Public | BindingFlags.Instance); DisplayField(d, fiPublic); FieldInfo fiConstant = myType.GetField("FieldC", BindingFlags.Public | BindingFlags.Static); DisplayField(d, fiConstant); } static void DisplayField(Object obj, FieldInfo f) { // Display the field name, value, and attributes. // Console.WriteLine("{0} = \"{1}\"; attributes: {2}", f.Name, f.GetValue(obj), f.Attributes); } } /* This code example produces the following output: Reflection.FieldAttributes m_field = "String A"; attributes: Private Field = "String B"; attributes: Public FieldC = "String C"; attributes: Public, Static, Literal, HasDefault */
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.


