| File: QuickInfo\QuickInfoSectionKinds.cs | Web Access |
| Project: src\roslyn\src\Features\Core\Portable\Microsoft.CodeAnalysis.Features.csproj (Microsoft.CodeAnalysis.Features) |
// 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.QuickInfo; /// <summary> /// The set of well known kinds used for the <see cref="QuickInfoSection.Kind"/> property. /// These tags influence the presentation of quick info section. /// </summary> public static class QuickInfoSectionKinds { public const string Description = nameof(Description); public const string DocumentationComments = nameof(DocumentationComments); public const string RemarksDocumentationComments = nameof(RemarksDocumentationComments); public const string ReturnsDocumentationComments = nameof(ReturnsDocumentationComments); public const string ValueDocumentationComments = nameof(ValueDocumentationComments); public const string TypeParameters = nameof(TypeParameters); public const string AnonymousTypes = nameof(AnonymousTypes); public const string Usage = nameof(Usage); public const string Exception = nameof(Exception); public const string Text = nameof(Text); public const string Captures = nameof(Captures); internal const string NullabilityAnalysis = nameof(NullabilityAnalysis); internal const string InterceptedBy = nameof(InterceptedBy); }