6 implementations of GetDocumentationCommentId
Microsoft.CodeAnalysis.CodeStyle.Fixes (1)
CodeGenerationSymbol.cs (1)
187public string GetDocumentationCommentId()
Microsoft.CodeAnalysis.CSharp (2)
Symbols\PublicModel\PreprocessingSymbol.cs (1)
74string? ISymbol.GetDocumentationCommentId() => null;
Symbols\PublicModel\Symbol.cs (1)
154string ISymbol.GetDocumentationCommentId()
Microsoft.CodeAnalysis.Features (1)
MetadataAsSource\AbstractMetadataAsSourceService.AbstractWrappedSymbol.cs (1)
89public string GetDocumentationCommentId()
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Symbol.vb (1)
717Public Overridable Function GetDocumentationCommentId() As String Implements ISymbol.GetDocumentationCommentId
Microsoft.CodeAnalysis.Workspaces (1)
CodeGenerationSymbol.cs (1)
187public string GetDocumentationCommentId()
17 references to GetDocumentationCommentId
Microsoft.CodeAnalysis.CSharp.Semantic.UnitTests (2)
Semantics\OperatorTests.cs (2)
7657Assert.Null(symbol1.GetDocumentationCommentId()); 8452Assert.Null(symbol1.GetDocumentationCommentId());
Microsoft.CodeAnalysis.CSharp.Symbol.UnitTests (4)
DocumentationComments\DocumentationCommentIDTests.cs (4)
34Assert.Null(symbol.GetDocumentationCommentId()); 147Assert.Null(symbol.GetDocumentationCommentId()); 168Assert.Null(symbol.GetDocumentationCommentId()); 312Assert.Null(symbol.GetDocumentationCommentId());
Microsoft.CodeAnalysis.CSharp.Workspaces (2)
Recommendations\CSharpRecommendationServiceRunner_Conversions.cs (2)
239SeeTag(fromType.GetDocumentationCommentId()), 240SeeTag(toType.GetDocumentationCommentId()));
Microsoft.CodeAnalysis.Features (3)
CodeFixes\Suppression\AbstractSuppressionCodeFixProvider.GlobalSuppressMessageFixAllCodeAction.cs (1)
225return builder.OrderBy(kvp => kvp.Key.GetDocumentationCommentId() ?? string.Empty);
LanguageServiceIndexFormat\SymbolMoniker.cs (1)
80var documentationCommentId = symbol.GetDocumentationCommentId();
MetadataAsSource\AbstractMetadataAsSourceService.AbstractWrappedSymbol.cs (1)
90=> _symbol.GetDocumentationCommentId();
Microsoft.CodeAnalysis.VisualBasic (1)
Symbols\Symbol.vb (1)
717Public Overridable Function GetDocumentationCommentId() As String Implements ISymbol.GetDocumentationCommentId
Microsoft.CodeAnalysis.Workspaces (1)
Shared\Extensions\ISymbolExtensions.cs (1)
443var docId = typeArgs[index].GetDocumentationCommentId();
Microsoft.VisualStudio.LanguageServices (1)
Workspace\VisualStudioSymbolNavigationService.cs (1)
93var docCommentId = symbol.GetDocumentationCommentId();
Microsoft.VisualStudio.LanguageServices.VisualBasic (3)
CodeModel\VisualBasicCodeModelService_Prototype.vb (3)
68Return symbol.GetDocumentationCommentId() 86Return symbol.GetDocumentationCommentId() 113Return symbol.GetDocumentationCommentId()