1 implementation of GetIndentation
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Indentation\AbstractIndentationService.cs (1)
16public IndentationResult GetIndentation(
9 references to GetIndentation
Microsoft.CodeAnalysis.CSharp.Features (6)
BraceCompletion\AbstractCurlyBraceOrBracketCompletionService.cs (1)
172var indentation = indentationService.GetIndentation(document, lineNumber, options, cancellationToken);
ConvertToRawString\ConvertInterpolatedStringToRawStringCodeRefactoringProvider.cs (1)
203var indentationVal = indenter.GetIndentation(document, tokenLine.LineNumber, indentationOptions, cancellationToken);
ConvertToRawString\ConvertRegularStringToRawStringCodeRefactoringProvider.cs (1)
162var indentationVal = indenter.GetIndentation(parsedDocument, tokenLine.LineNumber, indentationOptions, cancellationToken);
Snippets\CSharpSnippetHelpers.cs (1)
38var indentation = indentationService.GetIndentation(parsedDocument, openBraceLine, indentationOptions, cancellationToken);
SplitStringLiteral\StringSplitter.cs (1)
128var desiredIndentation = indentationService.GetIndentation(
src\Analyzers\CSharp\CodeFixes\ConvertNamespace\ConvertNamespaceTransform.cs (1)
103var indentation = indentationService.GetIndentation(document, openBraceLine + 1, indentationOptions, cancellationToken);
Microsoft.CodeAnalysis.EditorFeatures (1)
SmartIndent\SmartIndent.cs (1)
47var result = newService.GetIndentation(parsedDocument, line.LineNumber, indentationOptions, cancellationToken);
Microsoft.CodeAnalysis.Features (1)
Wrapping\AbstractCodeActionComputer.cs (1)
104var desiredIndentation = indentationService.GetIndentation(
Microsoft.CodeAnalysis.Workspaces (1)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Indentation\IIndentationService.cs (1)
58var indentation = indenter.GetIndentation(newDocument, newTokenLine.LineNumber, options, cancellationToken);