3 implementations of GetGeneratedFileAsync
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (1)
PdbSourceDocument\NullResultMetadataAsSourceFileProvider.cs (1)
39public Task<MetadataAsSourceFile?> GetGeneratedFileAsync(MetadataAsSourceWorkspace metadataWorkspace, Workspace sourceWorkspace, Project sourceProject, ISymbol symbol, bool signaturesOnly, MetadataAsSourceOptions options, string tempPath, TelemetryMessage? telemetry, CancellationToken cancellationToken)
Microsoft.CodeAnalysis.Features (2)
MetadataAsSource\DecompilationMetadataAsSourceFileProvider.cs (1)
61public async Task<MetadataAsSourceFile?> GetGeneratedFileAsync(
PdbSourceDocument\PdbSourceDocumentMetadataAsSourceFileProvider.cs (1)
74public async Task<MetadataAsSourceFile?> GetGeneratedFileAsync(
2 references to GetGeneratedFileAsync
Microsoft.CodeAnalysis.Features (2)
MetadataAsSource\IMetadataAsSourceFileProvider.cs (1)
27/// Called when the file returned from <see cref="GetGeneratedFileAsync"/> needs to be added to the workspace,
MetadataAsSource\MetadataAsSourceFileService.cs (1)
108var result = await provider.GetGeneratedFileAsync(_workspace, sourceWorkspace, sourceProject, symbol, signaturesOnly, options, providerTempPath, telemetryMessage, cancellationToken).ConfigureAwait(false);