11 references to AspNetCoreHighlightSpanKind
Microsoft.AspNetCore.App.Analyzers (3)
RouteEmbeddedLanguage\RoutePatternHighlighter.cs (3)
53
highlightSpans.Add(new AspNetCoreHighlightSpan(node.GetSpan(),
AspNetCoreHighlightSpanKind
.Reference));
92
highlightSpans.Add(new AspNetCoreHighlightSpan(parameterSyntax.Identifier.Span,
AspNetCoreHighlightSpanKind
.Definition));
119
highlightSpans.Add(new AspNetCoreHighlightSpan(reference.Identifier.Span,
AspNetCoreHighlightSpanKind
.Reference));
Microsoft.CodeAnalysis.ExternalAccess.AspNetCore (1)
TypeForwards.cs (1)
15
[assembly: TypeForwardedTo(typeof(Microsoft.CodeAnalysis.ExternalAccess.AspNetCore.EmbeddedLanguages.
AspNetCoreHighlightSpanKind
))]
Microsoft.CodeAnalysis.Features.ExternalAccess (7)
AspNetCore\EmbeddedLanguages\DocumentHighlighting\IEmbeddedLanguageDocumentHighlighter.cs (2)
39
public
AspNetCoreHighlightSpanKind
Kind { get; }
41
public AspNetCoreHighlightSpan(TextSpan textSpan,
AspNetCoreHighlightSpanKind
kind) : this()
AspNetCore\Internal\EmbeddedLanguages\AspNetCoreEmbeddedLanguageDocumentHighlighter.cs (5)
50
static HighlightSpanKind ConvertKind(
AspNetCoreHighlightSpanKind
kind)
54
AspNetCoreHighlightSpanKind
.None => HighlightSpanKind.None,
55
AspNetCoreHighlightSpanKind
.Definition => HighlightSpanKind.Definition,
56
AspNetCoreHighlightSpanKind
.Reference => HighlightSpanKind.Reference,
57
AspNetCoreHighlightSpanKind
.WrittenReference => HighlightSpanKind.WrittenReference,