1 write to IndentationWhitespace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
StringCopyPaste\AbstractPasteProcessor.cs (1)
102IndentationWhitespace = indentationWhitespace;
9 references to IndentationWhitespace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (9)
StringCopyPaste\KnownSourcePasteProcessor.cs (6)
198edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.StartDelimiterSpan.End, 0), NewLine + IndentationWhitespace)); 214edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.EndDelimiterSpan.Start, 0), NewLine + IndentationWhitespace)); 270builder.Append(IndentationWhitespace); 272else if (offset < IndentationWhitespace.Length) 280builder.Append(IndentationWhitespace[offset..]); 295builder.Append(IndentationWhitespace);
StringCopyPaste\UnknownSourcePasteProcessor.cs (3)
170edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.StartDelimiterSpan.End, 0), NewLine + IndentationWhitespace)); 205buffer.Append(IndentationWhitespace); 214edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.EndDelimiterSpan.Start, 0), NewLine + IndentationWhitespace));