9 references to GetIndentationString
Microsoft.CodeAnalysis.CSharp.Features (7)
ConvertNamespaceTransform.cs (1)
116return indentation.GetIndentationString(document.Text, options.UseTabs, options.TabSize);
Snippets\AbstractCSharpTypeSnippetProvider.cs (1)
81return newIndentation.GetIndentationString(parsedDocument.Text, syntaxFormattingOptions.UseTabs, syntaxFormattingOptions.TabSize) + newLine;
Snippets\CSharpConstructorSnippetProvider.cs (1)
75return newIndentation.GetIndentationString(parsedDocument.Text, syntaxFormattingOptions.UseTabs, syntaxFormattingOptions.TabSize) + newLine;
Snippets\CSharpElseSnippetProvider.cs (1)
97return newIndentation.GetIndentationString(parsedDocument.Text, syntaxFormattingOptions.UseTabs, syntaxFormattingOptions.TabSize) + newLine;
Snippets\CSharpForEachLoopSnippetProvider.cs (1)
84return newIndentation.GetIndentationString(parsedDocument.Text, syntaxFormattingOptions.UseTabs, syntaxFormattingOptions.TabSize) + newLine;
Snippets\CSharpIfSnippetProvider.cs (1)
61return newIndentation.GetIndentationString(parsedDocument.Text, syntaxFormattingOptions.UseTabs, syntaxFormattingOptions.TabSize) + newLine;
Snippets\CSharpWhileLoopSnippetProvider.cs (1)
61return newIndentation.GetIndentationString(parsedDocument.Text, syntaxFormattingOptions.UseTabs, syntaxFormattingOptions.TabSize) + newLine;
Microsoft.CodeAnalysis.Features (1)
Wrapping\AbstractCodeActionComputer.cs (1)
111return desiredIndentation.GetIndentationString(newSourceText, Options.FormattingOptions.UseTabs, Options.FormattingOptions.TabSize);
Microsoft.CodeAnalysis.Workspaces (1)
IIndentationService.cs (1)
79=> GetIndentationString(indentationResult, sourceText, options.UseTabs, options.TabSize);