GetFields Method (BindingFlags)

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

When overridden in a derived class, searches for the fields defined for the current Type, using the specified binding constraints.

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

Syntax

'Declaration
Public MustOverride Function GetFields ( _
    bindingAttr As BindingFlags _
) As FieldInfo()
public abstract FieldInfo[] GetFields(
    BindingFlags bindingAttr
)
public:
virtual array<FieldInfo^>^ GetFields(
    BindingFlags bindingAttr
) abstract
abstract GetFields : 
        bindingAttr:BindingFlags -> FieldInfo[] 
public abstract function GetFields(
    bindingAttr : BindingFlags
) : FieldInfo[]

Parameters

Return Value

Type: array<System.Reflection. . :: . .FieldInfo> [] () [] []
An array of FieldInfo objects representing all fields defined for the current Type that match the specified binding constraints.
-or-
An empty array of type FieldInfo, if no fields are defined for the current Type, or if none of the defined fields match the binding constraints.

Remarks

The GetFields method does not return fields in a particular order, such as alphabetical or declaration order. Your code must not depend on the order in which fields are returned, because that order varies.

The following BindingFlags filter flags can be used to define which fields to include in the search:

  • You must specify either BindingFlags.Instance or BindingFlags.Static in order to get a return.

  • Specify BindingFlags.Public to include public fields in the search.

  • Specify BindingFlags.NonPublic to include non-public fields (that is, private, internal, and protected fields) in the search. Only protected and internal fields on base classes are returned; private fields on base classes are not returned.

  • Specify BindingFlags.FlattenHierarchy to include public and protected static members up the hierarchy; private static members in inherited classes are not included.

The following BindingFlags modifier flags can be used to change how the search works:

  • BindingFlags.DeclaredOnly to search only the fields declared on the Type, not fields that were simply inherited.

See System.Reflection..::..BindingFlags for more information.

If the current Type represents a constructed generic type, this method returns the FieldInfo objects with the type parameters replaced by the appropriate type arguments.

If the current Type represents a type parameter in the definition of a generic type or generic method, this method searches the public fields of the class constraint.

.NET Framework Security

See Also

Reference

Type Class

GetFields Overload

System Namespace