Skip to main content
A newer version of this page is available. .

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.v18.2.dll

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