welsonjs/WelsonJS.Augmented/EsentInterop/jet_exceptionaction.cs
Namhyeon, Go fdabeab54f Change the project name to WelsonJS.Toolkit to WelsonJS.Augmented
Change the project name to WelsonJS.Toolkit to WelsonJS.Augmented
2025-12-14 18:54:32 +09:00

25 lines
742 B
C#

//-----------------------------------------------------------------------
// <copyright file="jet_exceptionaction.cs" company="Microsoft Corporation">
// Copyright (c) Microsoft Corporation.
// </copyright>
//-----------------------------------------------------------------------
namespace Microsoft.Isam.Esent.Interop
{
/// <summary>
/// Constants to be used with JET_paramExceptionAction.
/// </summary>
public enum JET_ExceptionAction
{
/// <summary>
/// Display message box on exception.
/// </summary>
MsgBox = 0x00000001,
/// <summary>
/// Do not handle exceptions. Throw them to the caller.
/// </summary>
None = 0x00000002,
}
}