20 instantiations of SolutionPreviewItem
Microsoft.CodeAnalysis.EditorFeatures (20)
CodeActions\CodeActionEditHandlerService.cs (2)
82new SolutionPreviewResult(_threadingContext, new SolutionPreviewItem( 93new SolutionPreviewResult(_threadingContext, new SolutionPreviewItem(
Preview\AbstractPreviewFactoryService.cs (18)
97previewItems.Add(new SolutionPreviewItem(documentId.ProjectId, documentId, async c => 104previewItems.Add(new SolutionPreviewItem(documentId.ProjectId, documentId, async c => 111previewItems.Add(new SolutionPreviewItem(oldProject.Id, documentId, async c => 118previewItems.Add(new SolutionPreviewItem(documentId.ProjectId, documentId, async c => 125previewItems.Add(new SolutionPreviewItem(documentId.ProjectId, documentId, async c => 132previewItems.Add(new SolutionPreviewItem(oldProject.Id, documentId, async c => 139previewItems.Add(new SolutionPreviewItem(documentId.ProjectId, documentId, async c => 146previewItems.Add(new SolutionPreviewItem(documentId.ProjectId, documentId, async c => 153previewItems.Add(new SolutionPreviewItem(oldProject.Id, documentId, async c => 160previewItems.Add(new SolutionPreviewItem(oldProject.Id, null, 167previewItems.Add(new SolutionPreviewItem(oldProject.Id, null, 174previewItems.Add(new SolutionPreviewItem(oldProject.Id, null, 181previewItems.Add(new SolutionPreviewItem(oldProject.Id, null, 188previewItems.Add(new SolutionPreviewItem(oldProject.Id, null, 195previewItems.Add(new SolutionPreviewItem(oldProject.Id, null, 203previewItems.Add(new SolutionPreviewItem(project.Id, null, 210previewItems.Add(new SolutionPreviewItem(project.Id, null, 217previewItems.Add(new SolutionPreviewItem(projectChanges.OldProject.Id, null,
8 references to SolutionPreviewItem
Microsoft.CodeAnalysis.EditorFeatures (8)
Preview\AbstractPreviewFactoryService.cs (1)
78var previewItems = new List<SolutionPreviewItem>();
Preview\SolutionPreviewItem.cs (1)
20/// Construct an instance of <see cref="SolutionPreviewItem"/>
Preview\SolutionPreviewResult.cs (6)
19private readonly IList<SolutionPreviewItem> _previews; 22public SolutionPreviewResult(IThreadingContext threadingContext, SolutionPreviewItem preview, SolutionChangeSummary? changeSummary = null) 23: this(threadingContext, new List<SolutionPreviewItem> { preview }, changeSummary) 29IList<SolutionPreviewItem>? previews, 33_previews = previews ?? SpecializedCollections.EmptyList<SolutionPreviewItem>(); 66foreach (var previewItem in _previews)