forked from ClearFoundry/ClearScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathV8RuntimeFlags.cs
More file actions
30 lines (26 loc) · 826 Bytes
/
Copy pathV8RuntimeFlags.cs
File metadata and controls
30 lines (26 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
using System;
namespace Microsoft.ClearScript.V8
{
/// <summary>
/// Defines options for initializing a new V8 runtime instance.
/// </summary>
[Flags]
public enum V8RuntimeFlags
{
/// <summary>
/// Specifies that no options are selected.
/// </summary>
None = 0,
/// <summary>
/// Specifies that script debugging features are to be enabled.
/// </summary>
EnableDebugging = 0x00000001,
/// <summary>
/// Specifies that remote script debugging is to be enabled. This option is ignored if
/// <see cref="EnableDebugging"/> is not specified.
/// </summary>
EnableRemoteDebugging = 0x00000002
}
}