TypeDelegator::GetField Method (String^, BindingFlags)
.NET Framework (current version)
Returns a FieldInfo object representing the field with the specified name.
Assembly: mscorlib (in mscorlib.dll)
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::FieldInfo^A FieldInfo object representing the field declared or inherited by this TypeDelegator with the specified name. Returns null if no such field is found.
| Exception | Condition |
|---|---|
| ArgumentNullException | The name parameter is null. |
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.
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: