// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
namespace System.Web.Razor.Editor
{
///
/// Used within .
///
[Flags]
public enum EditorHints
{
///
/// The default (Markup or Code) editor behavior for Statement completion should be used.
/// Editors can always use the default behavior, even if the span is labeled with a different CompletionType.
///
None = 0, // 0000 0000
///
/// Indicates that Virtual Path completion should be used for this span if the editor supports it.
/// Editors need not support this mode of completion, and will use the default () behavior
/// if they do not support it.
///
VirtualPath = 1, // 0000 0001
///
/// Indicates that this span's content contains the path to the layout page for this document.
///
LayoutPage = 2, // 0000 0010
}
}