1 implementation of Clone
Microsoft.CodeAnalysis.EditorFeatures.Text (1)
Implementation\TextBufferFactoryService\TextBufferCloneServiceFactory.cs (1)
42public ITextBuffer Clone(SourceText sourceText, IContentType contentType)
4 references to Clone
Microsoft.CodeAnalysis.EditorFeatures (2)
Preview\AbstractPreviewFactoryService.cs (1)
616var buffer = _textBufferCloneService.Clone(text, contentType);
QuickInfo\Extensions.cs (1)
40return cloneService.Value.Clone(sourceText, contentType);
Microsoft.VisualStudio.LanguageServices (1)
Preview\FileChange.cs (1)
61_buffer = bufferCloneService.Clone(bufferText, bufferFactory.InertContentType);
Microsoft.VisualStudio.LanguageServices.Implementation (1)
Options\AbstractOptionPreviewViewModel.cs (1)
144var textBuffer = _textBufferCloneService.Clone(SourceText.From(formatted.ToFullString(), Encoding.UTF8), _contentType);