Session.FindObjectAsync<ClassType>(CriteriaOperator, AsyncFindObjectCallback) Method
Asynchronously searches for the first object which matches the specified criteria and has the type designated by the generic type parameter, and notifies upon completion.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
Parameters
Name | Type | Description |
---|---|---|
criteria | CriteriaOperator | A CriteriaOperator descendant which represents the criteria to match persistent objects. |
callback | DevExpress.Xpo.Helpers.AsyncFindObjectCallback | A DevExpress.Xpo.Helpers.AsyncFindObjectCallback delegate to be called after the method completes. Use callback to do the following:
Do not raise exceptions or modify persistent objects within a callback. |
Type Parameters
Name |
---|
ClassType |
Returns
Type | Description |
---|---|
Object | An object used internally to manage an asynchronous operation. |
Remarks
We recommend using the FindObjectAsync<ClassType>(CriteriaOperator, CancellationToken) Task-based overload instead of this method.