mirror of
https://github.com/MichaelGrafnetter/DSInternals
synced 2025-02-03 20:51:34 +00:00
33 lines
1.2 KiB
C#
Vendored
33 lines
1.2 KiB
C#
Vendored
//-----------------------------------------------------------------------
|
|
// <copyright file="jet_sesparam.cs" company="Microsoft Corporation">
|
|
// Copyright (c) Microsoft Corporation.
|
|
// </copyright>
|
|
//-----------------------------------------------------------------------
|
|
|
|
namespace Microsoft.Isam.Esent.Interop.Windows8
|
|
{
|
|
/// <summary>
|
|
/// ESENT session parameters.
|
|
/// </summary>
|
|
/// <seealso cref="Windows10.Windows10Sesparam"/>
|
|
public enum JET_sesparam
|
|
{
|
|
/// <summary>
|
|
/// This parameter is not meant to be used.
|
|
/// </summary>
|
|
Base = 4096,
|
|
|
|
/// <summary>
|
|
/// This parameter sets the grbits for commit. It is functionally the same as the
|
|
/// system parameter JET_param.CommitDefault when used with an instance and a sesid.
|
|
/// Note: JET_param.CommitDefault is not currently exposed in the ESE interop layer.
|
|
/// </summary>
|
|
CommitDefault = Base + 1,
|
|
|
|
/// <summary>
|
|
/// This parameter sets a user specific commit context that will be placed in the
|
|
/// transaction log on commit to level 0.
|
|
/// </summary>
|
|
CommitGenericContext = Base + 2,
|
|
}
|
|
} |