1 implementation of Clone
Microsoft.CodeAnalysis.EditorFeatures.Text (1)
Implementation\TextBufferFactoryService\TextBufferCloneServiceFactory.cs (1)
42
public ITextBuffer
Clone
(SourceText sourceText, IContentType contentType)
4 references to Clone
Microsoft.CodeAnalysis.EditorFeatures (2)
Preview\AbstractPreviewFactoryService.cs (1)
616
var buffer = _textBufferCloneService.
Clone
(text, contentType);
QuickInfo\Extensions.cs (1)
40
return 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)
144
var textBuffer = _textBufferCloneService.
Clone
(SourceText.From(formatted.ToFullString(), Encoding.UTF8), _contentType);