53 references to AsText
Microsoft.CodeAnalysis.CSharp.EditorFeatures (6)
StringCopyPaste\AbstractPasteProcessor.cs (2)
108TextBeforePaste = SnapshotBeforePaste.AsText(); 109TextAfterPaste = SnapshotAfterPaste.AsText();
StringCopyPaste\StringCopyPasteCommandHandler.cs (4)
144var newTextAfterChanges = snapshotBeforePaste.AsText().WithChanges(textChanges); 190parsedDocumentBeforePaste, subjectBuffer, snapshotBeforePaste.AsText(), stringExpressionBeforePaste, documentBeforePaste.Project.GetFallbackAnalyzerOptions(), cancellationToken); 305var originalStringContentsAfterPaste = snapshotAfterPaste.AsText().GetSubText(spanAfterPaste); 334var contentSpans = StringInfo.GetStringInfo(snapshot.AsText(), stringExpression).ContentSpans;
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (5)
Completion\CompletionProviders\OverrideCompletionProviderTests.cs (4)
2481var actualCodeAfterCommit = textView.TextBuffer.CurrentSnapshot.AsText().ToString(); 2734var actualCodeAfterCommit = textView.TextBuffer.CurrentSnapshot.AsText().ToString(); 2789var actualCodeAfterCommit = textView.TextBuffer.CurrentSnapshot.AsText().ToString(); 3266var actualCodeAfterCommit = textBuffer.CurrentSnapshot.AsText().ToString();
SplitStringLiteral\SplitStringLiteralCommandHandlerTests.cs (1)
99Assert.Equal(expectedOutput, textBuffer.CurrentSnapshot.AsText().ToString());
Microsoft.CodeAnalysis.EditorFeatures (15)
Classification\Syntactic\SyntacticClassificationTaggerProvider.TagComputer.cs (2)
465span.Snapshot.AsText(), span.Span.ToTextSpan(), classifiedSpans, CancellationToken.None); 543var currentText = currentSnapshot.AsText();
CommentSelection\AbstractCommentSelectionBase.cs (1)
148var newText = subjectBuffer.CurrentSnapshot.AsText();
CommentSelection\CommentUncommentSelectionCommandHandler.cs (1)
236var text = span.Snapshot.AsText();
CommentSelection\ToggleBlockCommentCommandHandler.cs (1)
41var allText = snapshot.AsText();
Editor\TextEditApplication.cs (2)
18var oldText = oldSnapshot.AsText(); 26var oldText = oldSnapshot.AsText();
IntelliSense\IDocumentProvider.cs (1)
27return snapshot.AsText().GetDocumentWithFrozenPartialSemantics(cancellationToken);
Interactive\InteractiveSession.cs (1)
207var newSubmissionText = submissionBuffer.CurrentSnapshot.AsText();
Interactive\InteractiveWorkspace.cs (1)
58OnDocumentTextChanged(document, appliedText.AsText(), PreservationMode.PreserveIdentity);
NavigationBar\NavigationBarController.cs (1)
307var document = textSnapshot.AsText().GetDocumentWithFrozenPartialSemantics(cancellationToken);
NavigationBar\NavigationBarController_ModelComputation.cs (2)
110? textSnapshot.AsText().GetDocumentWithFrozenPartialSemantics(cancellationToken) 111: textSnapshot.AsText().GetOpenDocumentInCurrentContextWithChanges();
RenameTracking\RenameTrackingTaggerProvider.StateMachine.cs (1)
172var beforeText = eventArgs.Before.AsText();
Undo\EditorSourceTextUndoService.cs (1)
41var sourceText = snapshot?.AsText();
Microsoft.CodeAnalysis.EditorFeatures.Test.Utilities (5)
Completion\AbstractCompletionProviderTests.cs (3)
518var actualCodeAfterCommit = textBuffer.CurrentSnapshot.AsText().ToString(); 555var actualCodeAfterCommit = textBuffer.CurrentSnapshot.AsText().ToString(); 1046var text = hostDocument.GetTextBuffer().CurrentSnapshot.AsText();
Squiggles\TestDiagnosticTagProducer.cs (1)
31var sourceText = document.GetTextBuffer().CurrentSnapshot.AsText();
Workspaces\EditorTestHostDocument.cs (1)
219var oldText = buffer.CurrentSnapshot.AsText();
Microsoft.CodeAnalysis.EditorFeatures.Text (6)
Extensions.cs (4)
37=> line.Snapshot.AsText().Lines[line.LineNumber]; 68=> text.AsText().GetRelatedDocumentsWithChanges(); 77=> text.AsText().GetOpenDocumentInCurrentContextWithChanges(); 80=> text.AsText().GetOpenTextDocumentInCurrentContextWithChanges();
Extensions.TextBufferContainer.cs (2)
61? editorBuffer.CurrentSnapshot.AsText() 109var oldText = (SnapshotSourceText)args.Before.AsText();
Microsoft.CodeAnalysis.EditorFeatures.UnitTests (3)
EditorAdapter\TextSnapshotImplementationTest.cs (1)
23var text = buffer.CurrentSnapshot.AsText();
TextEditor\TryGetDocumentTests.cs (2)
58var text = buffer.CurrentSnapshot.AsText(); 72var newText = buffer.CurrentSnapshot.AsText();
Microsoft.CodeAnalysis.VisualBasic.EditorFeatures (2)
LineCommit\CommitFormatter.vb (1)
58Dim document = currentSnapshot.AsText().GetDocumentWithFrozenPartialSemantics(cancellationToken)
Utilities\CommandHandlers\AbstractImplementAbstractClassOrInterfaceCommandHandler.vb (1)
132Dim text = textSnapshot.AsText()
Microsoft.VisualStudio.LanguageServices (10)
DebuggerIntelliSense\AbstractDebuggerIntelliSenseContext.cs (2)
172var forkedSolution = solution.WithDocumentText(document.Id, _projectionBuffer.CurrentSnapshot.AsText(), PreservationMode.PreserveIdentity); 175forkedSolution = forkedSolution.WithDocumentText(link, _projectionBuffer.CurrentSnapshot.AsText(), PreservationMode.PreserveIdentity);
LanguageService\AbstractLanguageService`2.VsLanguageDebugInfo.cs (1)
290var document = snapshot.AsText().GetDocumentWithFrozenPartialSemantics(cancellationToken);
Preview\FileChange.cs (1)
197return _buffer.CurrentSnapshot.AsText();
Venus\ContainedDocument.cs (3)
210var originalText = SubjectBuffer.CurrentSnapshot.AsText(); 215=> ApplyChanges(SubjectBuffer.CurrentSnapshot.AsText(), changes); 770Debug.Assert(ReferenceEquals(parsedDocument.Text, subjectBuffer.CurrentSnapshot.AsText()));
Venus\ContainedDocument.DocumentServiceProvider.cs (2)
282return (line.Snapshot.AsText().GetSubText(contentSpan.Span.ToTextSpan()), GetSpanOnContent(primarySpan.Span.ToTextSpan(), contentSpan.Span.ToTextSpan())); 287return (line.Snapshot.AsText().GetSubText(contentSpan.Span.ToTextSpan()), GetSpanOnContent(primarySpan.Span.ToTextSpan(), contentSpan.Span.ToTextSpan()));
Workspace\SourceGeneratedFileManager.cs (1)
529var sourceText = _textBuffer.CurrentSnapshot.AsText();
Microsoft.VisualStudio.LanguageServices.LiveShare (1)
Client\RemoteLanguageServiceWorkspace.cs (1)
509var oldText = oldSnapshot.AsText();