DSInternals/Src/Microsoft.Database.Isam/BoundCriteria.cs
2016-01-24 09:59:40 +01:00

30 lines
864 B
C#
Vendored

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