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
GetField(String) |
Returns a field having the specified name. |
GetField(String, BindingFlags) |
Returns a field having the specified name and binding attributes. |
GetField(String)
- Source:
- Module.cs
- Source:
- Module.cs
- Source:
- Module.cs
Returns a field having the specified name.
public:
System::Reflection::FieldInfo ^ GetField(System::String ^ name);
public System.Reflection.FieldInfo? GetField (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)
- Source:
- Module.cs
- Source:
- Module.cs
- Source:
- Module.cs
Returns a field having the specified name and binding attributes.
public:
virtual System::Reflection::FieldInfo ^ GetField(System::String ^ name, System::Reflection::BindingFlags bindingAttr);
public:
System::Reflection::FieldInfo ^ GetField(System::String ^ name, System::Reflection::BindingFlags bindingAttr);
public virtual System.Reflection.FieldInfo? GetField (string name, System.Reflection.BindingFlags bindingAttr);
public virtual System.Reflection.FieldInfo GetField (string name, System.Reflection.BindingFlags bindingAttr);
public System.Reflection.FieldInfo GetField (string name, System.Reflection.BindingFlags bindingAttr);
abstract member GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
override this.GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
member this.GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
Public Overridable Function GetField (name As String, bindingAttr As BindingFlags) As FieldInfo
Public 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
.