//----------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. // //----------------------------------------------------------------------- namespace Microsoft.Isam.Esent.Interop.Windows8 { /// /// ESENT session parameters. /// /// public enum JET_sesparam { /// /// This parameter is not meant to be used. /// Base = 4096, /// /// 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. /// CommitDefault = 4097, /// /// This parameter sets a user specific commit context that will be placed in the /// transaction log on commit to level 0. /// CommitGenericContext = 4098, } }