31 references to ToTaggedText
Microsoft.CodeAnalysis.Features (31)
Completion\CommonCompletionItem.cs (1)
47
properties = properties.NullToEmpty().Add(KeyValuePairUtil.Create(DescriptionProperty, EncodeDescription(description.
ToTaggedText
())));
Completion\CommonCompletionUtilities.cs (1)
144
textContentBuilder.AddRange(supportedPlatforms.ToDisplayParts().
ToTaggedText
());
DocumentationComments\AbstractDocumentationCommentFormattingService.cs (2)
473
TypeParameterRefToSymbolDisplayParts(attribute.Value, state.TypeResolutionSymbol, state.Position, state.SemanticModel, state.Format).
ToTaggedText
(state.Style));
478
CrefToSymbolDisplayParts(attribute.Value, state.Position, state.SemanticModel, state.Format, kind).
ToTaggedText
(state.Style));
FindUsages\DefinitionItemFactory.cs (1)
114
var nameDisplayParts = definition.ToDisplayParts(s_namePartsFormat).
ToTaggedText
();
FindUsages\FindUsagesHelpers.cs (1)
99
=> definition.ToDisplayParts(GetFormat(definition)).
ToTaggedText
();
LanguageServices\SymbolDisplayService\AbstractSymbolDisplayService.AbstractSymbolDescriptionBuilder.cs (1)
200
.. LineBreak().
ToTaggedText
(),
QuickInfo\QuickInfoUtilities.cs (1)
137
usageTextBuilder.AddRange(supportedPlatforms.ToDisplayParts().
ToTaggedText
());
SignatureHelp\AbstractSignatureHelpProvider.cs (9)
211
info.ReplaceStructuralTypes(prefixParts, semanticModel, position).
ToTaggedText
(),
212
info.ReplaceStructuralTypes(separatorParts, semanticModel, position).
ToTaggedText
(),
213
info.ReplaceStructuralTypes(suffixParts, semanticModel, position).
ToTaggedText
(),
215
structuralTypeParts.
ToTaggedText
());
222
prefixParts.
ToTaggedText
(),
223
separatorParts.
ToTaggedText
(),
224
suffixParts.
ToTaggedText
(),
226
descriptionParts.
ToTaggedText
());
323
var platformParts = platformData.ToDisplayParts().
ToTaggedText
();
SignatureHelp\SignatureHelpItem.cs (5)
74
? c => documentationFactory(c).
ToTaggedText
()
76
prefixParts.
ToTaggedText
(),
77
separatorParts.
ToTaggedText
(),
78
suffixParts.
ToTaggedText
(),
80
descriptionParts.
ToTaggedText
())
SignatureHelp\SignatureHelpParameter.cs (9)
81
parameter.DisplayParts.
ToTaggedText
(),
82
parameter.PrefixDisplayParts.
ToTaggedText
(),
83
parameter.SuffixDisplayParts.
ToTaggedText
(),
84
parameter.SelectedDisplayParts.
ToTaggedText
());
148
documentationFactory is null ? null : c => documentationFactory(c).
ToTaggedText
(),
149
displayParts.
ToTaggedText
(),
150
prefixDisplayParts.
ToTaggedText
(),
151
suffixDisplayParts.
ToTaggedText
(),
152
selectedDisplayParts.
ToTaggedText
())