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

BaseObjectSpace.GetObjects<T>() Method

Returns an IList collection of objects of the specified type, retrieved to the current Object Space.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public IList<T> GetObjects<T>()

Type Parameters

Name
T

Returns

Type Description
IList<T>

A IList collection that contains the persistent objects of the specified type.

Remarks

To get objects of the specified type, this method invokes a protected virtual CreateCollection method that does nothing and returns null. So, the details on how the objects are retrieved depend on how the CreateCollection method is overridden in a particular descendant of the BaseObjectSpace class.

Implements

See Also