Module.GetField Method (String, BindingFlags)
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Returns the global field that has the specified name and binding attributes.
Assembly: mscorlib (in mscorlib.dll)
'Declaration Public Overridable Function GetField ( _ name As String, _ bindingAttr As BindingFlags _ ) As FieldInfo
Parameters
- name
- Type: System.String
The name of the global field.
- bindingAttr
- Type: System.Reflection.BindingFlags
The flags used to control the search.
Return Value
Type: System.Reflection.FieldInfoThe global field that has the specified name and binding attributes, or Nothing if the field does not exist.
| Exception | Condition |
|---|---|
| ArgumentNullException | The name parameter is Nothing. |
Show: