Table of Contents

Class ObjectsManipulationEventArgs

Namespace
DevExpress.Xpo
Assembly
DevExpress.Xpo.v24.1.dll

Provides data for object manipulation events.

public class ObjectsManipulationEventArgs : EventArgs
Inheritance
ObjectsManipulationEventArgs
Inherited Members

Constructors

ObjectsManipulationEventArgs(Session, ICollection)

Initializes a new instance of the ObjectsManipulationEventArgs class.

public ObjectsManipulationEventArgs(Session session, ICollection objects)

Parameters

session Session

A Session object whose persistent objects are being processed. This value is assigned to the ObjectsManipulationEventArgs.Session property.

objects ICollection

The collection of persistent objects that are involved in processing. This collection is assigned to the ObjectsManipulationEventArgs.Objects property.

Properties

Objects

Gets the collection of persistent objects that are currently being processed.

public ICollection Objects { get; }

Property Value

ICollection

The collection of persistent objects involved in processing.

Session

Gets the session whose persistent objects are currently being processed.

public Session Session { get; }

Property Value

Session

A Session object whose persistent objects are being processed.