_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.

C#
public System.Reflection.FieldInfo[] GetFields (System.Reflection.BindingFlags bindingAttr);

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

.NET Framework 4.8.1 og andre versjoner
Produkt Versjoner
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

GetFields()

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

C#
public System.Reflection.FieldInfo[] GetFields ();

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

.NET Framework 4.8.1 og andre versjoner
Produkt Versjoner
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1