FieldInfo Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Discovers the attributes of a field and provides access to field metadata.
public ref class FieldInfo abstract : System::Reflection::MemberInfo
public ref class FieldInfo abstract : System::Reflection::MemberInfo, System::Runtime::InteropServices::_FieldInfo
public abstract class FieldInfo : System.Reflection.MemberInfo
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)]
[System.Serializable]
public abstract class FieldInfo : System.Reflection.MemberInfo, System.Runtime.InteropServices._FieldInfo
[System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)]
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public abstract class FieldInfo : System.Reflection.MemberInfo, System.Runtime.InteropServices._FieldInfo
type FieldInfo = class
inherit MemberInfo
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)>]
[<System.Serializable>]
type FieldInfo = class
inherit MemberInfo
interface _FieldInfo
[<System.Runtime.InteropServices.ClassInterface(System.Runtime.InteropServices.ClassInterfaceType.None)>]
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type FieldInfo = class
inherit MemberInfo
interface _FieldInfo
Public MustInherit Class FieldInfo
Inherits MemberInfo
Public MustInherit Class FieldInfo
Inherits MemberInfo
Implements _FieldInfo
- Inheritance
- Derived
- Attributes
- Implements
Examples
The following example uses the Type.GetFields method to get the field-related information from the FieldInfo class, and then displays field attributes.
using namespace System;
using namespace System::Reflection;
public ref class FieldInfoClass
{
public:
int myField1;
protected:
String^ myField2;
};
int main()
{
array<FieldInfo^>^myFieldInfo;
Type^ myType = FieldInfoClass::typeid;
// Get the type and fields of FieldInfoClass.
myFieldInfo = myType->GetFields( static_cast<BindingFlags>(BindingFlags::NonPublic | BindingFlags::Instance | BindingFlags::Public) );
Console::WriteLine( "\nThe fields of FieldInfoClass are \n" );
// Display the field information of FieldInfoClass.
for ( int i = 0; i < myFieldInfo->Length; i++ )
{
Console::WriteLine( "\nName : {0}", myFieldInfo[ i ]->Name );
Console::WriteLine( "Declaring Type : {0}", myFieldInfo[ i ]->DeclaringType );
Console::WriteLine( "IsPublic : {0}", myFieldInfo[ i ]->IsPublic );
Console::WriteLine( "MemberType : {0}", myFieldInfo[ i ]->MemberType );
Console::WriteLine( "FieldType : {0}", myFieldInfo[ i ]->FieldType );
Console::WriteLine( "IsFamily : {0}", myFieldInfo[ i ]->IsFamily );
}
}
using System;
using System.Reflection;
public class FieldInfoClass
{
public int myField1 = 0;
protected string myField2 = null;
public static void Main()
{
FieldInfo[] myFieldInfo;
Type myType = typeof(FieldInfoClass);
// Get the type and fields of FieldInfoClass.
myFieldInfo = myType.GetFields(BindingFlags.NonPublic | BindingFlags.Instance
| BindingFlags.Public);
Console.WriteLine("\nThe fields of " +
"FieldInfoClass are \n");
// Display the field information of FieldInfoClass.
for(int i = 0; i < myFieldInfo.Length; i++)
{
Console.WriteLine("\nName : {0}", myFieldInfo[i].Name);
Console.WriteLine("Declaring Type : {0}", myFieldInfo[i].DeclaringType);
Console.WriteLine("IsPublic : {0}", myFieldInfo[i].IsPublic);
Console.WriteLine("MemberType : {0}", myFieldInfo[i].MemberType);
Console.WriteLine("FieldType : {0}", myFieldInfo[i].FieldType);
Console.WriteLine("IsFamily : {0}", myFieldInfo[i].IsFamily);
}
}
}
Imports System.Reflection
Public Class FieldInfoClass
Public myField1 As Integer = 0
Protected myField2 As String = Nothing
Public Shared Sub Main()
Dim myFieldInfo() As FieldInfo
Dim myType As Type = GetType(FieldInfoClass)
' Get the type and fields of FieldInfoClass.
myFieldInfo = myType.GetFields(BindingFlags.NonPublic Or _
BindingFlags.Instance Or BindingFlags.Public)
Console.WriteLine(ControlChars.NewLine & "The fields of " & _
"FieldInfoClass class are " & ControlChars.NewLine)
' Display the field information of FieldInfoClass.
Dim i As Integer
For i = 0 To myFieldInfo.Length - 1
Console.WriteLine(ControlChars.NewLine + "Name : {0}", myFieldInfo(i).Name)
Console.WriteLine("Declaring Type : {0}", myFieldInfo(i).DeclaringType)
Console.WriteLine("IsPublic : {0}", myFieldInfo(i).IsPublic)
Console.WriteLine("MemberType : {0}", myFieldInfo(i).MemberType)
Console.WriteLine("FieldType : {0}", myFieldInfo(i).FieldType)
Console.WriteLine("IsFamily : {0}", myFieldInfo(i).IsFamily)
Next i
End Sub
End Class
Remarks
The field information is obtained from metadata. The FieldInfo class does not have a public constructor. FieldInfo objects are obtained by calling either the GetFields or GetField method of a Type
object.
Fields are variables defined in the class. FieldInfo provides access to the metadata for a field within a class and provides dynamic set and get functionality for the field. The class is not loaded into memory until invoke or get is called on the object.
Notes to Implementers
When you inherit from FieldInfo, you must override the following members: GetValue(Object) and SetValue(Object, Object, BindingFlags, Binder, CultureInfo).
Constructors
FieldInfo() |
Initializes a new instance of the |
Properties
Attributes |
Gets the attributes associated with this field. |
CustomAttributes |
Gets a collection that contains this member's custom attributes. (Inherited from MemberInfo) |
DeclaringType |
Gets the class that declares this member. (Inherited from MemberInfo) |
FieldHandle |
Gets a |
FieldType |
Gets the type of this field object. |
IsAssembly |
Gets a value indicating whether the potential visibility of this field is described by 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. |
IsCollectible |
Gets a value that indicates whether this MemberInfo object is part of an assembly held in a collectible AssemblyLoadContext. (Inherited from MemberInfo) |
IsFamily |
Gets a value indicating whether the visibility of this field is described by Family; that is, the field is visible only within its class and derived classes. |
IsFamilyAndAssembly |
Gets a value indicating whether the visibility of this field is described by FamANDAssem; that is, the field can be accessed from derived classes, but only if they are in the same assembly. |
IsFamilyOrAssembly |
Gets a value indicating whether the potential visibility of this field is described by FamORAssem; that is, the field can be accessed by derived classes wherever they are, and by classes in the same assembly. |
IsInitOnly |
Gets a value indicating whether the field can only be set in the body of the constructor. |
IsLiteral |
Gets a value indicating whether the value is written at compile time and cannot be changed. |
IsNotSerialized |
Obsolete.
Gets a value indicating whether this field has the |
IsPinvokeImpl |
Gets a value indicating whether the corresponding |
IsPrivate |
Gets a value indicating whether the field is private. |
IsPublic |
Gets a value indicating whether the field is public. |
IsSecurityCritical |
Gets a value that indicates whether the current field is security-critical or security-safe-critical at the current trust level. |
IsSecuritySafeCritical |
Gets a value that indicates whether the current field is security-safe-critical at the current trust level. |
IsSecurityTransparent |
Gets a value that indicates whether the current field is transparent at the current trust level. |
IsSpecialName |
Gets a value indicating whether the corresponding |
IsStatic |
Gets a value indicating whether the field is static. |
MemberType |
Gets a MemberTypes value indicating that this member is a field. |
MemberType |
When overridden in a derived class, gets a MemberTypes value indicating the type of the member - method, constructor, event, and so on. (Inherited from MemberInfo) |
MetadataToken |
Gets a value that identifies a metadata element. (Inherited from MemberInfo) |
Module |
Gets the module in which the type that declares the member represented by the current MemberInfo is defined. (Inherited from MemberInfo) |
Name |
Gets the name of the current member. (Inherited from MemberInfo) |
ReflectedType |
Gets the class object that was used to obtain this instance of |
Methods
Equals(Object) |
Returns a value that indicates whether this instance is equal to a specified object. |
Equals(Object) |
Returns a value that indicates whether this instance is equal to a specified object. (Inherited from MemberInfo) |
GetCustomAttributes(Boolean) |
When overridden in a derived class, returns an array of all custom attributes applied to this member. (Inherited from MemberInfo) |
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) |
GetCustomAttributesData() |
Returns a list of CustomAttributeData objects representing data about the attributes that have been applied to the target member. (Inherited from MemberInfo) |
GetFieldFromHandle(RuntimeFieldHandle, RuntimeTypeHandle) |
Gets a FieldInfo for the field represented by the specified handle, for the specified generic type. |
GetFieldFromHandle(RuntimeFieldHandle) |
Gets a FieldInfo for the field represented by the specified handle. |
GetHashCode() |
Returns the hash code for this instance. |
GetHashCode() |
Returns the hash code for this instance. (Inherited from MemberInfo) |
GetModifiedFieldType() |
Gets the modified type of this field object. |
GetOptionalCustomModifiers() |
Gets an array of types that identify the optional custom modifiers of the field. |
GetRawConstantValue() |
Returns a literal value associated with the field by a compiler. |
GetRequiredCustomModifiers() |
Gets an array of types that identify the required custom modifiers of the property. |
GetType() |
Discovers the attributes of a class field and provides access to field metadata. |
GetType() |
Discovers the attributes of a member and provides access to member metadata. (Inherited from MemberInfo) |
GetValue(Object) |
When overridden in a derived class, returns the value of a field supported by a given object. |
GetValueDirect(TypedReference) |
Returns the value of a field supported by a given object. |
HasSameMetadataDefinitionAs(MemberInfo) | (Inherited from MemberInfo) |
IsDefined(Type, Boolean) |
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) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
SetValue(Object, Object, BindingFlags, Binder, CultureInfo) |
When overridden in a derived class, sets the value of the field supported by the given object. |
SetValue(Object, Object) |
Sets the value of the field supported by the given object. |
SetValueDirect(TypedReference, Object) |
Sets the value of the field supported by the given object. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Operators
Equality(FieldInfo, FieldInfo) |
Indicates whether two FieldInfo objects are equal. |
Inequality(FieldInfo, FieldInfo) |
Indicates whether two FieldInfo objects are not equal. |
Explicit Interface Implementations
_FieldInfo.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr) |
Maps a set of names to a corresponding set of dispatch identifiers. |
_FieldInfo.GetType() | |
_FieldInfo.GetTypeInfo(UInt32, UInt32, IntPtr) |
Retrieves the type information for an object, which can then be used to get the type information for an interface. |
_FieldInfo.GetTypeInfoCount(UInt32) |
Retrieves the number of type information interfaces that an object provides (either 0 or 1). |
_FieldInfo.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr) |
Provides access to properties and methods exposed by an object. |
_MemberInfo.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr) |
Maps a set of names to a corresponding set of dispatch identifiers. (Inherited from MemberInfo) |
_MemberInfo.GetType() |
Gets a Type object representing the MemberInfo class. (Inherited from MemberInfo) |
_MemberInfo.GetTypeInfo(UInt32, UInt32, IntPtr) |
Retrieves the type information for an object, which can then be used to get the type information for an interface. (Inherited from MemberInfo) |
_MemberInfo.GetTypeInfoCount(UInt32) |
Retrieves the number of type information interfaces that an object provides (either 0 or 1). (Inherited from MemberInfo) |
_MemberInfo.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr) |
Provides access to properties and methods exposed by an object. (Inherited from MemberInfo) |
ICustomAttributeProvider.GetCustomAttributes(Boolean) |
Returns an array of all of the custom attributes defined on this member, excluding named attributes, or an empty array if there are no custom attributes. (Inherited from MemberInfo) |
ICustomAttributeProvider.GetCustomAttributes(Type, Boolean) |
Returns an array of custom attributes defined on this member, identified by type, or an empty array if there are no custom attributes of that type. (Inherited from MemberInfo) |
ICustomAttributeProvider.IsDefined(Type, Boolean) |
Indicates whether one or more instance of |
Extension Methods
GetCustomAttribute(MemberInfo, Type, Boolean) |
Retrieves a custom attribute of a specified type that is applied to a specified member, and optionally inspects the ancestors of that member. |
GetCustomAttribute(MemberInfo, Type) |
Retrieves a custom attribute of a specified type that is applied to a specified member. |
GetCustomAttribute<T>(MemberInfo, Boolean) |
Retrieves a custom attribute of a specified type that is applied to a specified member, and optionally inspects the ancestors of that member. |
GetCustomAttribute<T>(MemberInfo) |
Retrieves a custom attribute of a specified type that is applied to a specified member. |
GetCustomAttributes(MemberInfo, Boolean) |
Retrieves a collection of custom attributes that are applied to a specified member, and optionally inspects the ancestors of that member. |
GetCustomAttributes(MemberInfo, Type, Boolean) |
Retrieves a collection of custom attributes of a specified type that are applied to a specified member, and optionally inspects the ancestors of that member. |
GetCustomAttributes(MemberInfo, Type) |
Retrieves a collection of custom attributes of a specified type that are applied to a specified member. |
GetCustomAttributes(MemberInfo) |
Retrieves a collection of custom attributes that are applied to a specified member. |
GetCustomAttributes<T>(MemberInfo, Boolean) |
Retrieves a collection of custom attributes of a specified type that are applied to a specified member, and optionally inspects the ancestors of that member. |
GetCustomAttributes<T>(MemberInfo) |
Retrieves a collection of custom attributes of a specified type that are applied to a specified member. |
IsDefined(MemberInfo, Type, Boolean) |
Indicates whether custom attributes of a specified type are applied to a specified member, and, optionally, applied to its ancestors. |
IsDefined(MemberInfo, Type) |
Indicates whether custom attributes of a specified type are applied to a specified member. |
GetMetadataToken(MemberInfo) |
Gets a metadata token for the given member, if available. |
HasMetadataToken(MemberInfo) |
Returns a value that indicates whether a metadata token is available for the specified member. |
Applies to
Thread Safety
This type is thread safe.