1 write to IndentationWhitespace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
StringCopyPaste\AbstractPasteProcessor.cs (1)
108IndentationWhitespace = indentationWhitespace;
9 references to IndentationWhitespace
Microsoft.CodeAnalysis.CSharp.EditorFeatures (9)
StringCopyPaste\KnownSourcePasteProcessor.cs (6)
210edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.StartDelimiterSpan.End, 0), NewLine + IndentationWhitespace)); 226edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.EndDelimiterSpan.Start, 0), NewLine + IndentationWhitespace)); 282builder.Append(IndentationWhitespace); 284else if (offset < IndentationWhitespace.Length) 292builder.Append(IndentationWhitespace[offset..]); 307builder.Append(IndentationWhitespace);
StringCopyPaste\UnknownSourcePasteProcessor.cs (3)
177edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.StartDelimiterSpan.End, 0), NewLine + IndentationWhitespace)); 212buffer.Append(IndentationWhitespace); 221edits.Add(new TextChange(new TextSpan(StringExpressionBeforePasteInfo.EndDelimiterSpan.Start, 0), NewLine + IndentationWhitespace));