1 implementation of Format
Microsoft.CodeAnalysis.Features (1)
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (1)
269public string Format(string rawXmlText, Compilation compilation = null)
14 references to Format
Microsoft.CodeAnalysis.Features (7)
MetadataAsSource\AbstractMetadataAsSourceService.DocCommentFormatter.cs (7)
40docCommentFormattingService.Format(docComment.SummaryText), 63docCommentFormattingService.Format(docComment.GetParameterText(parameterNames[i])), 87docCommentFormattingService.Format(docComment.GetTypeParameterText(typeParameterNames[i])), 93docCommentFormattingService.Format(docComment.ReturnsText), 98docCommentFormattingService.Format(docComment.ValueText), 124AddWrappedTextFromRawText(docCommentFormattingService.Format(rawExceptionTexts[j]), formattedCommentLinesBuilder); 130docCommentFormattingService.Format(docComment.RemarksText),
Microsoft.VisualStudio.LanguageServices (7)
Library\ObjectBrowser\AbstractDescriptionBuilder.cs (7)
305AddText(formattingService.Format(documentationComment.SummaryText, compilation)); 329AddText(formattingService.Format(typeParameterText, compilation)); 355AddText(formattingService.Format(parameterText, compilation)); 372AddText(formattingService.Format(documentationComment.ReturnsText, compilation)); 387AddText(formattingService.Format(documentationComment.ValueText, compilation)); 402AddText(formattingService.Format(documentationComment.RemarksText, compilation)); 433AddText(formattingService.Format(exceptionText, compilation));