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.
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.FieldInfoA 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)| Exception | Condition |
|---|---|
| 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.
Show: