GetField Method (String, BindingFlags)
Collapse the table of content
Expand the table of content

TypeDelegator.GetField Method (String, BindingFlags)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Returns a FieldInfo object representing the field with the specified name.

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

'Declaration
Public Overrides Function GetField ( _
	name As String, _
	bindingAttr As BindingFlags _
) As FieldInfo

Parameters

name
Type: System.String
The name of the field to find.
bindingAttr
Type: System.Reflection.BindingFlags
A bitmask that affects the way in which the search is conducted. The value is a combination of zero or more bit flags from BindingFlags.

Return Value

Type: System.Reflection.FieldInfo
A FieldInfo object representing the field declared or inherited by this TypeDelegator with the specified name. Returns Nothing if no such field is found.

Implements

IReflect.GetField(String, BindingFlags)

ExceptionCondition
ArgumentNullException

The name parameter is Nothing.

Use a bindingAttr of BindingFlags.NonPublic to return all public and nonpublic fields. Use BindingFlags.IgnoreCase to ignore the case of the fields, as the search is case-sensitive by default.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft