Table of Contents

Delegate SessionManipulationEventHandler

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

Represents a method that will handle the session events (e.g. Session.BeforeBeginTransaction, Session.AfterBeginTransaction events).

public delegate void SessionManipulationEventHandler(object sender, SessionManipulationEventArgs e)

Parameters

sender object

The event source. Identifies the Session that raised the event.

e SessionManipulationEventArgs

A SessionManipulationEventArgs object that contains event data.

Constructors

SessionManipulationEventHandler(object, nint)

public SessionManipulationEventHandler(object @object, nint method)

Parameters

object object
method nint

Methods

BeginInvoke(object, SessionManipulationEventArgs, AsyncCallback, object)

public virtual IAsyncResult BeginInvoke(object sender, SessionManipulationEventArgs e, AsyncCallback callback, object @object)

Parameters

sender object
e SessionManipulationEventArgs
callback AsyncCallback
object object

Returns

IAsyncResult

EndInvoke(IAsyncResult)

public virtual void EndInvoke(IAsyncResult result)

Parameters

result IAsyncResult

Invoke(object, SessionManipulationEventArgs)

public virtual void Invoke(object sender, SessionManipulationEventArgs e)

Parameters

sender object
e SessionManipulationEventArgs