1 type derived from DidOpenHandler
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptDidOpenHandler.cs (1)
16internal class VSTypeScriptDidOpenHandler() : DidOpenHandler;
7 references to DidOpenHandler
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptDidOpenHandler.cs (1)
13[ExportStatelessLspService(typeof(DidOpenHandler), ProtocolConstants.TypeScriptLanguageContract), Shared]
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Handler\DocumentChanges\DidOpenHandler.cs (1)
17[ExportCSharpVisualBasicStatelessLspService(typeof(DidOpenHandler)), Shared]
Handler\IDocumentChangeTracker.cs (1)
16/// Called via <see cref="DidOpenHandler"/>, <see cref="DidChangeHandler"/> and <see cref="DidCloseHandler"/>
Workspaces\LspWorkspaceManager.cs (2)
102/// Called by the <see cref="DidOpenHandler"/> when a document is opened in LSP. 104/// <see cref="DidOpenHandler.MutatesSolutionState"/> is true which means this runs serially in the <see cref="RequestExecutionQueue{RequestContextType}"/>
Microsoft.CodeAnalysis.LanguageServer.Protocol.UnitTests (2)
LanguageServerTargetTests.cs (2)
77Assert.Same(serverOne.GetRequiredLspService<DidOpenHandler>(), serverTwo.GetRequiredLspService<DidOpenHandler>());