IReflect.GetFields Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns an array of FieldInfo objects that correspond to all fields of the current class.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- bindingAttr
- Type: System.Reflection.BindingFlags
The binding attributes used to control the search.
Return Value
Type: System.Reflection.FieldInfo []An array of FieldInfo objects containing all the field information for this reflection object that meets the search constraints specified in bindingAttr.
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.
Show: