2 implementations of ITemporaryStorageServiceInternal
Microsoft.CodeAnalysis.Workspaces (2)
TemporaryStorage\TemporaryStorageService.cs (1)
28
internal sealed partial class TemporaryStorageService :
ITemporaryStorageServiceInternal
TemporaryStorage\TrivialTemporaryStorageService.cs (1)
14
internal sealed class TrivialTemporaryStorageService :
ITemporaryStorageServiceInternal
13 references to ITemporaryStorageServiceInternal
Microsoft.CodeAnalysis.Workspaces (12)
Serialization\SerializerService.cs (1)
43
private readonly Lazy<TemporaryStorageService> _storageService = new(() => (TemporaryStorageService)workspaceServices.GetRequiredService<
ITemporaryStorageServiceInternal
>());
TemporaryStorage\TemporaryStorageService.cs (3)
96
ITemporaryStorageTextHandle
ITemporaryStorageServiceInternal
.WriteToTemporaryStorage(SourceText text, CancellationToken cancellationToken)
99
async Task<ITemporaryStorageTextHandle>
ITemporaryStorageServiceInternal
.WriteToTemporaryStorageAsync(SourceText text, CancellationToken cancellationToken)
139
ITemporaryStorageStreamHandle
ITemporaryStorageServiceInternal
.WriteToTemporaryStorage(Stream stream, CancellationToken cancellationToken)
TemporaryStorage\TemporaryStorageService.Factory.cs (1)
15
[ExportWorkspaceServiceFactory(typeof(
ITemporaryStorageServiceInternal
), ServiceLayer.Default), Shared]
Workspace\Host\TemporaryStorage\ITemporaryStorageStreamHandle.cs (1)
13
/// cref="Identifier"/>. Use <see cref="
ITemporaryStorageServiceInternal
.WriteToTemporaryStorage(Stream,
Workspace\ProjectSystem\ProjectSystemProjectOptionsProcessor.cs (2)
20
private readonly
ITemporaryStorageServiceInternal
_temporaryStorageService;
54
_temporaryStorageService = workspaceServices.GetRequiredService<
ITemporaryStorageServiceInternal
>();
Workspace\Solution\SolutionCompilationState.SkeletonReferenceCache.cs (2)
253
var
temporaryStorageService = services.GetRequiredService<
ITemporaryStorageServiceInternal
>();
Workspace\Solution\VersionSource\RecoverableTextAndVersion.cs (2)
140
private readonly
ITemporaryStorageServiceInternal
_storageService;
151
_storageService = services.GetRequiredService<
ITemporaryStorageServiceInternal
>();
Microsoft.VisualStudio.LanguageServices (1)
ProjectSystem\MetadataReferences\VisualStudioMetadataReferenceManager.cs (1)
32
/// from <see cref="
ITemporaryStorageServiceInternal
"/>.