File: Features\Structure\XamlStructureTypes.cs
Web Access
Project: src\src\VisualStudio\Xaml\Impl\Microsoft.VisualStudio.LanguageServices.Xaml.csproj (Microsoft.VisualStudio.LanguageServices.Xaml)
// 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.
 
#nullable disable
 
namespace Microsoft.VisualStudio.LanguageServices.Xaml.Features.Structure
{
    internal static class XamlStructureTypes
    {
        // Trivia
        public const string Comment = nameof(Comment);
        public const string Region = nameof(Region);
 
        // Top level declarations
        public const string Namespaces = nameof(Namespaces);
        public const string Type = nameof(Type);
        public const string Member = nameof(Member);
    }
}