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

CollectionSource(IObjectSpace, Type, Boolean, CollectionSourceMode) Constructor

Initializes a new instance of the CollectionSource.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v19.1.dll

Declaration

public CollectionSource(
    IObjectSpace objectSpace,
    Type objectType,
    bool isServerMode,
    CollectionSourceMode mode
)

Parameters

Name Type Description
objectSpace IObjectSpace

An IObjectSpace object representing the Object Space used by the Collection Source to interact with the database.

objectType Type

A type of the objects that will be contained in the Collection Source’s CollectionSourceBase.Collection.

isServerMode Boolean

true, if the server mode should be used; otherwise, false. This value is considered when initializing the CollectionSourceBase.DataAccessMode property.

mode CollectionSourceMode

A CollectionSource enumeration value specifying a Collection Source’s mode of operation. This value is used to initialize the CollectionSourceBase.Mode property.

Remarks

XAF automatically creates and manipulates a Collection Source when it creates a List View. However, you may need to instantiate a Collection Source manually if you create a custom List View.

See Also