@(Document.GetString(Keys.Title) ?? Document.GetTitle())
- } - - @RenderSection("subheading", required: false) -References
--
- @foreach (var link in referenceLinks)
- {
- if (Context.TryGetXrefDocument(link, out var refDoc, out string error))
- {
-
- - @{ - var kind = refDoc.GetString(CodeAnalysisKeys.SpecificKind); - var prefix = string.Empty; - var containingType = @refDoc.GetDocument(CodeAnalysisKeys.ContainingType); - if (containingType != null) - { - prefix = containingType.GetString(CodeAnalysisKeys.DisplayName) + "."; - } - } - - @if (!string.IsNullOrWhiteSpace(prefix)){ @prefix}@Html.DocumentLink(refDoc, refDoc.GetString(CodeAnalysisKeys.DisplayName) ?? refDoc.GetTitle()) @kind - - } - else - { - Context.LogWarning(Model, $"Error finding xref for {link} - {error}"); - } - } -