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

AuditTrailService.IsSessionAudited(Session) Method

Indicates whether the Audit Trail Module audits object changes within the specified session.

Namespace: DevExpress.Persistent.AuditTrail

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

Declaration

public bool IsSessionAudited(
    Session session
)

Parameters

Name Type Description
session Session

The Session object this method checks.

Returns

Type Description
Boolean

true if the Audit Trail Module audits object changes in the specified session; otherwise, false.

Remarks

The following code demonstrates how to use this method:

using DevExpress.ExpressApp;
using DevExpress.Persistent.AuditTrail;
using DevExpress.Xpo;
// ...
public partial class MyController : ViewController {
    protected override void OnActivated() {
        base.OnActivated();
        Session session = ((XPObjectSpace)ObjectSpace).Session;
        if(AuditTrailService.Instance.IsSessionAudited(session)) {
            AuditTrailService.Instance.BeginSessionAudit(session, 
            AuditTrailStrategy.OnObjectChanged, ObjectAuditingMode.Full);  
        }
    }
    // ...
}
See Also