IReflect.GetFields Method
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Returns an array of FieldInfo objects that correspond to all fields of the current class.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Function GetFields ( _
bindingAttr As BindingFlags _
) As FieldInfo()
FieldInfo[] GetFields(
BindingFlags bindingAttr
)
Parameters
- bindingAttr
Type: System.Reflection.BindingFlags
The binding attributes used to control the search.
Return Value
Type: array<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.
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.
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.
See Also