FieldInfo Class

Microsoft Silverlight will reach end of support after October 2021. Learn more.

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

Inheritance Hierarchy

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

Namespace:  System.Reflection
Assembly:  mscorlib (in mscorlib.dll)

Syntax

'Declaration
<ComVisibleAttribute(True)> _
<ClassInterfaceAttribute(ClassInterfaceType.None)> _
Public MustInherit Class FieldInfo _
    Inherits MemberInfo
[ComVisibleAttribute(true)]
[ClassInterfaceAttribute(ClassInterfaceType.None)]
public abstract class FieldInfo : MemberInfo

The FieldInfo type exposes the following members.

Constructors

  Name Description
Protected method FieldInfo Initializes a new instance of the FieldInfo class.

Top

Properties

  Name Description
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 Attributes Gets the attributes that are associated with this field.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 DeclaringType Gets the class that declares this member. (Inherited from MemberInfo.)
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 FieldHandle Gets a handle to the internal metadata representation of a field.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 FieldType Gets the type of this field object.
Public propertySupported by Silverlight for Windows PhoneSupported 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 propertySupported by Silverlight for Windows PhoneSupported 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 propertySupported by Silverlight for Windows PhoneSupported 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 propertySupported by Silverlight for Windows PhoneSupported 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 propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 IsInitOnly Gets a value that indicates whether the field can be set only in the body of the constructor.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 IsLiteral Gets a value that indicates whether the value is written at compile time and cannot be changed.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 IsNotSerialized Gets a value that indicates whether this field has the NotSerialized attribute.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 IsPinvokeImpl Gets a value that indicates whether the corresponding PinvokeImpl attribute is set in FieldAttributes.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 IsPrivate Gets a value that indicates whether the field is private.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 IsPublic Gets a value that indicates whether the field is public.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 IsSpecialName Gets a value that indicates whether the field has a name that has special significance.
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 IsStatic Gets a value that indicates whether the field is static (Shared in Visual Basic).
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 MemberType Gets a value that indicates that this member is a field. (Overrides MemberInfo.MemberType.)
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 MetadataToken Gets a value that identifies a metadata element. (Inherited from MemberInfo.)
Public propertySupported by Silverlight for Windows PhoneSupported 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 propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 Name Gets the name of the current member. (Inherited from MemberInfo.)
Public propertySupported by Silverlight for Windows PhoneSupported by Xbox 360 ReflectedType Gets the class object that was used to obtain this instance of MemberInfo. (Inherited from MemberInfo.)

Top

Methods

  Name Description
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected methodSupported by Silverlight for Windows PhoneSupported 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 methodSupported by Silverlight for Windows PhoneSupported 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 methodSupported by Silverlight for Windows PhoneSupported 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 methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetFieldFromHandle(RuntimeFieldHandle) Gets a FieldInfo for the field represented by the specified handle.
Public methodStatic memberSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetFieldFromHandle(RuntimeFieldHandle, RuntimeTypeHandle) Gets a FieldInfo for the field represented by the specified handle, for the specified generic type.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetRawConstantValue Returns a literal value associated with the field by a compiler.
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetType Gets the Type of the current instance. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 GetValue When overridden in a derived class, returns the value of a field supported by a given object.
Public methodSupported by Silverlight for Windows PhoneSupported 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 methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 SetValue(Object, Object) Sets the value of the field that is supported by the given object.
Public methodSupported by Silverlight for Windows PhoneSupported 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 methodSupported by Silverlight for Windows PhoneSupported by Xbox 360 ToString Returns a string that represents the current object. (Inherited from Object.)

Top

Remarks

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.

Examples

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

Imports System.Reflection

Public Class Example
   Public myField1 As Integer = 0
   Protected myField2 As String = Nothing

   Public Shared Sub Demo(ByVal outputBlock As System.Windows.Controls.TextBlock)
      Dim myFieldInfo() As FieldInfo
      Dim myType As Type = GetType(Example)
      ' Get the type and fields of Example.
      myFieldInfo = myType.GetFields(BindingFlags.NonPublic Or _
                    BindingFlags.Instance Or BindingFlags.Public)
      outputBlock.Text &= ControlChars.NewLine & "The fields of " & _
                    "Example class are " & ControlChars.NewLine & vbCrLf
      ' Display the field information of Example.
      Dim i As Integer
      For i = 0 To myFieldInfo.Length - 1
         outputBlock.Text &= String.Format(ControlChars.NewLine + "Name            : {0}", myFieldInfo(i).Name) & vbCrLf
         outputBlock.Text &= String.Format("Declaring Type  : {0}", myFieldInfo(i).DeclaringType) & vbCrLf
         outputBlock.Text &= String.Format("IsPublic        : {0}", myFieldInfo(i).IsPublic) & vbCrLf
         outputBlock.Text &= String.Format("MemberType      : {0}", myFieldInfo(i).MemberType) & vbCrLf
         outputBlock.Text &= String.Format("FieldType       : {0}", myFieldInfo(i).FieldType) & vbCrLf
         outputBlock.Text &= String.Format("IsFamily        : {0}", myFieldInfo(i).IsFamily) & vbCrLf
      Next i
   End Sub
End Class
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";
      }
   }
}

Version Information

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

Platforms

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

Thread Safety

This type is thread safe.