Module.GetField Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a specified field.
Overloads
| Name | Description |
|---|---|
| GetField(String) |
Returns a field having the specified name. |
| GetField(String, BindingFlags) |
Returns a field having the specified name and binding attributes. |
GetField(String)
Returns a field having the specified name.
public:
System::Reflection::FieldInfo ^ GetField(System::String ^ name);
public System.Reflection.FieldInfo GetField(string name);
member this.GetField : string -> System.Reflection.FieldInfo
Public Function GetField (name As String) As FieldInfo
Parameters
- name
- String
The field name.
Returns
A FieldInfo object having the specified name, or null if the field does not exist.
Exceptions
The name parameter is null.
Applies to
GetField(String, BindingFlags)
Returns a field having the specified name and binding attributes.
public:
System::Reflection::FieldInfo ^ GetField(System::String ^ name, System::Reflection::BindingFlags bindingAttr);
public:
virtual System::Reflection::FieldInfo ^ GetField(System::String ^ name, System::Reflection::BindingFlags bindingAttr);
public System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr);
public virtual System.Reflection.FieldInfo GetField(string name, System.Reflection.BindingFlags bindingAttr);
member this.GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
abstract member GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
override this.GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
Public Function GetField (name As String, bindingAttr As BindingFlags) As FieldInfo
Public Overridable Function GetField (name As String, bindingAttr As BindingFlags) As FieldInfo
Parameters
- name
- String
The field name.
- bindingAttr
- BindingFlags
One of the BindingFlags bit flags used to control the search.
Returns
A FieldInfo object having the specified name and binding attributes, or null if the field does not exist.
Exceptions
The name parameter is null.