2 implementations of TryRemoveMiscellaneousDocumentAsync
Microsoft.CodeAnalysis.LanguageServer (1)
FileBasedPrograms\FileBasedProgramsProjectSystem.cs (1)
142public async ValueTask<bool> TryRemoveMiscellaneousDocumentAsync(DocumentUri uri)
Microsoft.CodeAnalysis.LanguageServer.Protocol (1)
Workspaces\LspMiscellaneousFilesWorkspaceProvider.cs (1)
86public ValueTask<bool> TryRemoveMiscellaneousDocumentAsync(DocumentUri uri)
2 references to TryRemoveMiscellaneousDocumentAsync
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
Workspaces\LspWorkspaceManager.cs (2)
160await _lspMiscellaneousFilesWorkspaceProvider.TryRemoveMiscellaneousDocumentAsync(uri).ConfigureAwait(false); 271var didRemove = await _lspMiscellaneousFilesWorkspaceProvider.TryRemoveMiscellaneousDocumentAsync(uri).ConfigureAwait(false);