TypeDelegator.GetFields Method (BindingFlags)

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Returns an array of FieldInfo objects representing the data fields defined for the type wrapped by the current TypeDelegator.

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

Syntax

'Declaration
Public Overrides Function GetFields ( _
    bindingAttr As BindingFlags _
) As FieldInfo()
public override FieldInfo[] GetFields(
    BindingFlags bindingAttr
)

Parameters

Return Value

Type: array<System.Reflection.FieldInfo[]
An array of type FieldInfo containing the fields declared or inherited by the current TypeDelegator. An empty array is returned if there are no matched fields.

Implements

IReflect.GetFields(BindingFlags)

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 can vary.

Use a bindingAttr of BindingFlags.NonPublic to return all public and nonpublic fields.

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.