// --------------------------------------------------------------------------- // // Copyright (c) Microsoft Corporation. All rights reserved. // // --------------------------------------------------------------------------- // --------------------------------------------------------------------- // // // --------------------------------------------------------------------- namespace Microsoft.Database.Isam { /// /// Choices for Cursor.FindRecordsBetween /// public enum BoundCriteria { /// /// Whether the bounds are included. /// Inclusive = 0, /// /// Whether the bounds are excluded. /// Exclusive = 1, } }