//-----------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation.
//
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop.Windows10
{
using Microsoft.Isam.Esent.Interop.Windows8;
///
/// Values of that were introduced in Windows 10.
///
///
public static class Windows10Sesparam
{
///
/// Gets the current number of nested levels of transactions begun. A value of zero indicates that
/// the session is not currently in a transaction. This parameter is read-only.
///
public const JET_sesparam TransactionLevel = (JET_sesparam)(JET_sesparam.Base + 3);
///
/// A client context of type that the engine uses to track and trace operations (such as IOs).
///
public const JET_sesparam OperationContext = (JET_sesparam)(JET_sesparam.Base + 4);
///
/// A 32-bit integer ID that is logged in traces and can be used by clients to correlate ESE actions with their activity.
///
public const JET_sesparam CorrelationID = (JET_sesparam)(JET_sesparam.Base + 5);
}
}