_Type.GetFields Method

Definition

Provides COM objects with version-independent access to the GetFields method.

Overloads

GetFields(BindingFlags)

Provides COM objects with version-independent access to the GetFields(BindingFlags) method.

GetFields()

Provides COM objects with version-independent access to the GetFields() method.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The Type.GetFields method gets a specific field of the current Type.

GetFields(BindingFlags)

Provides COM objects with version-independent access to the GetFields(BindingFlags) method.

public:
 cli::array <System::Reflection::FieldInfo ^> ^ GetFields(System::Reflection::BindingFlags bindingAttr);
public System.Reflection.FieldInfo[] GetFields (System.Reflection.BindingFlags bindingAttr);
abstract member GetFields : System.Reflection.BindingFlags -> System.Reflection.FieldInfo[]
Public Function GetFields (bindingAttr As BindingFlags) As FieldInfo()

Parameters

bindingAttr
BindingFlags

A bitmask comprised of one or more BindingFlags that specify how the search is conducted.

-or-

Zero, to return null.

Returns

An array of FieldInfo objects representing all fields defined for the current Type that match the specified binding constraints.

-or-

An empty array of type FieldInfo, if no fields are defined for the current Type, or if none of the defined fields match the binding constraints.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The Type.GetFields method searches for the fields defined for the current Type, using the specified binding constraints.

Applies to

GetFields()

Provides COM objects with version-independent access to the GetFields() method.

public:
 cli::array <System::Reflection::FieldInfo ^> ^ GetFields();
public System.Reflection.FieldInfo[] GetFields ();
abstract member GetFields : unit -> System.Reflection.FieldInfo[]
Public Function GetFields () As FieldInfo()

Returns

An array of FieldInfo objects representing all the public fields defined for the current Type.

-or-

An empty array of type FieldInfo, if no public fields are defined for the current Type.

Remarks

This method is for access to managed classes from unmanaged code, and should not be called from managed code.

The Type.GetFields method returns all the public fields of the current Type.

Applies to