Skip to main content

BeforeFillEventArgs(Object, String, ObjectConstructorInfo, IEnumerable<Parameter>) Constructor

Initializes a new instance of the BeforeFillEventArgs class with the specified settings.

Namespace: DevExpress.DataAccess.ObjectBinding

Assembly: DevExpress.DataAccess.v24.1.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

public BeforeFillEventArgs(
    object dataSource,
    string dataMember,
    ObjectConstructorInfo constructorInfo,
    IEnumerable<Parameter> parameters
)

Parameters

Name Type Description
dataSource Object

A Object value, specifying the data source. This value is assigned to the BeforeFillEventArgs.DataSource property.

dataMember String

A String value, specifying the data member. This value is assigned to the BeforeFillEventArgs.DataMember property.

constructorInfo ObjectConstructorInfo

An ObjectConstructorInfo value. This value is assigned to the BeforeFillEventArgs.ConstructorInfo property.

parameters IEnumerable<Parameter>

A collection of Parameter objects. This value is assigned to the BeforeFillEventArgs.Parameters property.

See Also