File: ContentTypeNames.cs
Web Access
Project: src\src\EditorFeatures\Text\Microsoft.CodeAnalysis.EditorFeatures.Text.csproj (Microsoft.CodeAnalysis.EditorFeatures.Text)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
namespace Microsoft.CodeAnalysis.Editor;
 
internal static class ContentTypeNames
{
    public const string CSharpContentType = "CSharp";
    public const string CSharpSignatureHelpContentType = "CSharp Signature Help";
    public const string RoslynContentType = "Roslyn Languages";
    public const string VisualBasicContentType = "Basic";
    public const string VisualBasicSignatureHelpContentType = "Basic Signature Help";
    public const string XamlContentType = "XAML";
    public const string JavaScriptContentTypeName = "JavaScript";
    public const string TypeScriptContentTypeName = "TypeScript";
    public const string FSharpContentType = "F#";
    public const string FSharpSignatureHelpContentType = "F# Signature Help";
}