Skip to main content
A newer version of this page is available.
All docs
V20.2
.NET Framework 4.5.2+

AuditTrailService.GetStrategy(Session) Method

Gets the audit strategy for the specified session.

Namespace: DevExpress.Persistent.AuditTrail

Assembly: DevExpress.Persistent.BaseImpl.v20.2.dll

Declaration

public AuditTrailStrategy? GetStrategy(
    Session session
)

Parameters

Name Type Description
session Session

The Session object whose audit strategy this method returns.

Returns

Type Description
Nullable<DevExpress.Persistent.AuditTrail.AuditTrailStrategy>

The session‘s audit strategy.

Remarks

The AuditTrailStrategy contains the following values:

  • OnObjectLoaded
    The Audit Trail Module starts auditing an object when it is loaded.
  • OnObjectChanged
    The Audit Trail Module starts auditing an object when it is changed.

The following code demonstrates how to call this method:

using DevExpress.ExpressApp;
using DevExpress.Persistent.AuditTrail;
using DevExpress.Xpo;
// ...
public class MyController : ViewController {
    protected override void OnActivated() {
        base.OnActivated();
        Session session = ((XPObjectSpace)ObjectSpace).Session;
        if (AuditTrailService.Instance.GetStrategy(session).HasValue &&
            AuditTrailService.Instance.GetStrategy(session).Value == AuditTrailStrategy.OnObjectLoaded) {
            // ...
        }
    }
    // ...
}
See Also