AccessibleObject.IReflect.GetField(String, BindingFlags) 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.
Gets the FieldInfo object corresponding to the specified field and binding flag. For a description of this member, see GetField(String, BindingFlags).
virtual System::Reflection::FieldInfo ^ System.Reflection.IReflect.GetField(System::String ^ name, System::Reflection::BindingFlags bindingAttr) = System::Reflection::IReflect::GetField;
System.Reflection.FieldInfo IReflect.GetField (string name, System.Reflection.BindingFlags bindingAttr);
System.Reflection.FieldInfo? IReflect.GetField (string name, System.Reflection.BindingFlags bindingAttr);
abstract member System.Reflection.IReflect.GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
override this.System.Reflection.IReflect.GetField : string * System.Reflection.BindingFlags -> System.Reflection.FieldInfo
Function GetField (name As String, bindingAttr As BindingFlags) As FieldInfo Implements IReflect.GetField
Parameters
- name
- String
The name of the field to find.
- bindingAttr
- BindingFlags
The binding attributes used to control the search.
Returns
A FieldInfo object containing the field information for the named object that meets the search constraints specified in bindingAttr
.
Implements
Exceptions
The object implements multiple fields with the same name.
Remarks
This member is an explicit interface member implementation. It can be used only when the AccessibleObject instance is cast to an IReflect interface.