AccessibleObject.IReflect.GetFields(BindingFlags) Method

Definition

Gets an array of FieldInfo objects corresponding to all fields of the current class. For a description of this member, see GetFields(BindingFlags).

 virtual cli::array <System::Reflection::FieldInfo ^> ^ System.Reflection.IReflect.GetFields(System::Reflection::BindingFlags bindingAttr) = System::Reflection::IReflect::GetFields;
System.Reflection.FieldInfo[] IReflect.GetFields (System.Reflection.BindingFlags bindingAttr);
abstract member System.Reflection.IReflect.GetFields : System.Reflection.BindingFlags -> System.Reflection.FieldInfo[]
override this.System.Reflection.IReflect.GetFields : System.Reflection.BindingFlags -> System.Reflection.FieldInfo[]
Function GetFields (bindingAttr As BindingFlags) As FieldInfo() Implements IReflect.GetFields

Parameters

bindingAttr
BindingFlags

The binding attributes used to control the search.

Returns

An array of FieldInfo objects containing all the field information for this reflection object that meets the search constraints specified in bindingAttr.

Implements

Remarks

Each field must have a unique name. The BindingFlags.NonPublic flag specifies that nonpublic fields are included in the search. The BindingFlags.Public flag specifies that public fields are included in the search.

This member is an explicit interface member implementation. It can be used only when the AccessibleObject instance is cast to an IReflect interface.

Applies to