This topic has not yet been rated - Rate this topic

FieldInfo Class

Discovers the attributes of a field and provides access to field metadata.

System.Object
  System.Reflection.MemberInfo
    System.Reflection.FieldInfo
      System.Reflection.Emit.FieldBuilder

Namespace:  System.Reflection
Assembly:  mscorlib (in mscorlib.dll)
[ComVisibleAttribute(true)]
[ClassInterfaceAttribute(ClassInterfaceType.None)]
public abstract class FieldInfo : MemberInfo

The FieldInfo type exposes the following members.

  Name Description
Protected method FieldInfo Initializes a new instance of the FieldInfo class.
Top
  Name Description
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 Attributes Gets the attributes that are associated with this field.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 DeclaringType Gets the class that declares this member. (Inherited from MemberInfo.)
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 FieldHandle Gets a handle to the internal metadata representation of a field.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 FieldType Gets the type of this field object.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsAssembly Gets a value that indicates whether the potential visibility of this field is described by FieldAttributes.Assembly; that is, the field is visible at most to other types in the same assembly, and is not visible to derived types outside the assembly.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsFamily Gets a value that indicates whether the visibility of this field is described by FieldAttributes.Family; that is, the field is visible only within its class and derived classes.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsFamilyAndAssembly Gets a value that indicates whether the visibility of this field is described by FieldAttributes.FamANDAssem; that is, the field can be accessed from derived classes, but only if they are in the same assembly.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsFamilyOrAssembly Gets a value that indicates whether the potential visibility of this field is described by FieldAttributes.FamORAssem; that is, the field can be accessed by derived classes wherever they are, and by classes in the same assembly.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsInitOnly Gets a value that indicates whether the field can be set only in the body of the constructor.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsLiteral Gets a value that indicates whether the value is written at compile time and cannot be changed.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsNotSerialized Gets a value that indicates whether this field has the NotSerialized attribute.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsPinvokeImpl Gets a value that indicates whether the corresponding PinvokeImpl attribute is set in FieldAttributes.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsPrivate Gets a value that indicates whether the field is private.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsPublic Gets a value that indicates whether the field is public.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsSpecialName Gets a value that indicates whether the field has a name that has special significance.
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 IsStatic Gets a value that indicates whether the field is static (Shared in Visual Basic).
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 MemberType Gets a value that indicates that this member is a field. (Overrides MemberInfo.MemberType.)
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 MetadataToken Gets a value that identifies a metadata element. (Inherited from MemberInfo.)
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 Module Gets the module in which the type that declares the member represented by the current MemberInfo is defined. (Inherited from MemberInfo.)
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 Name Gets the name of the current member. (Inherited from MemberInfo.)
Public property Supported by Silverlight for Windows Phone Supported by Xbox 360 ReflectedType Gets the class object that was used to obtain this instance of MemberInfo. (Inherited from MemberInfo.)
Top
  Name Description
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Supported by Silverlight for Windows Phone Supported by Xbox 360 Finalize Allows an object to try to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 GetCustomAttributes(Boolean) When overridden in a derived class, returns an array of all custom attributes applied to this member. (Inherited from MemberInfo.)
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 GetCustomAttributes(Type, Boolean) When overridden in a derived class, returns an array of custom attributes applied to this member and identified by Type. (Inherited from MemberInfo.)
Public method Static member Supported by Silverlight for Windows Phone Supported by Xbox 360 GetFieldFromHandle(RuntimeFieldHandle) Gets a FieldInfo for the field represented by the specified handle.
Public method Static member Supported by Silverlight for Windows Phone Supported by Xbox 360 GetFieldFromHandle(RuntimeFieldHandle, RuntimeTypeHandle) Gets a FieldInfo for the field represented by the specified handle, for the specified generic type.
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 GetRawConstantValue Returns a literal value associated with the field by a compiler.
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 GetType Gets the Type of the current instance. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 GetValue When overridden in a derived class, returns the value of a field supported by a given object.
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 IsDefined When overridden in a derived class, indicates whether one or more attributes of the specified type or of its derived types is applied to this member. (Inherited from MemberInfo.)
Protected method Supported by Silverlight for Windows Phone Supported by Xbox 360 MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 SetValue(Object, Object) Sets the value of the field that is supported by the given object.
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 SetValue(Object, Object, BindingFlags, Binder, CultureInfo) When overridden in a derived class, sets the value of the field with the specified constraints on type conversion.
Public method Supported by Silverlight for Windows Phone Supported by Xbox 360 ToString Returns a string that represents the current object. (Inherited from Object.)
Top

The FieldInfo class does not have a public constructor. FieldInfo objects are obtained by calling either Type.GetFields or Type.GetField.

Fields are variables that are defined in the class. FieldInfo provides access to the metadata for a field in a class and also enables late-bound access to the value of a field. In Silverlight, you can get the metadata of any field, regardless of its access level, but you cannot use FieldInfo to bypass access-level protection when you get or set the value of a field.

The following example uses the Type.GetFields method to get the fields of the Example class, and then displays information about the fields.


using System;
using System.Reflection;

public class Example
{
   public int myField1 = 0;
   protected string myField2 = null;
   public static void Demo(System.Windows.Controls.TextBlock outputBlock)
   {
      FieldInfo[] myFieldInfo;
      Type myType = typeof(Example);
      // Get the type and fields of Example.
      myFieldInfo = myType.GetFields(BindingFlags.NonPublic | BindingFlags.Instance
          | BindingFlags.Public);
      outputBlock.Text += "\nThe fields of " +
          "Example are \n" + "\n";
      // Display the field information of Example.
      for (int i = 0; i < myFieldInfo.Length; i++)
      {
         outputBlock.Text += String.Format("\nName            : {0}", myFieldInfo[i].Name) + "\n";
         outputBlock.Text += String.Format("Declaring Type  : {0}", myFieldInfo[i].DeclaringType) + "\n";
         outputBlock.Text += String.Format("IsPublic        : {0}", myFieldInfo[i].IsPublic) + "\n";
         outputBlock.Text += String.Format("MemberType      : {0}", myFieldInfo[i].MemberType) + "\n";
         outputBlock.Text += String.Format("FieldType       : {0}", myFieldInfo[i].FieldType) + "\n";
         outputBlock.Text += String.Format("IsFamily        : {0}", myFieldInfo[i].IsFamily) + "\n";
      }
   }
}


Silverlight

Supported in: 5, 4, 3

Silverlight for Windows Phone

Supported in: Windows Phone OS 7.1, Windows Phone OS 7.0

XNA Framework

Supported in: Xbox 360, Windows Phone OS 7.0

For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.

This type is thread safe.

Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ