System.Reflection.IReflect.GetFields Method

Returns an array of System.Reflection.FieldInfo objects that correspond to all fields of the current class.

Syntax

public FieldInfo[] GetFields (BindingFlags bindingAttr)

Parameters

bindingAttr
The binding attributes used to control the search.

Returns

An array of System.Reflection.FieldInfo objects containing all the field information for this reflection object that meets the search constraints specified in bindingAttr.

Remarks

The match is based upon a name. Each field must have a unique name. The BindingFlags.NonPublic flag specifies that non-public methods are included in the search. The BindingFlags.Public flag specifies that public methods are included in the search.

Requirements

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0