1 type derived from DidOpenHandler
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptDidOpenHandler.cs (1)
15internal class VSTypeScriptDidOpenHandler : DidOpenHandler
7 references to DidOpenHandler
Microsoft.CodeAnalysis.EditorFeatures (1)
ExternalAccess\VSTypeScript\VSTypeScriptDidOpenHandler.cs (1)
14[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)
13/// Called via <see cref="DidOpenHandler"/>, <see cref="DidChangeHandler"/> and <see cref="DidCloseHandler"/>
Workspaces\LspWorkspaceManager.cs (2)
92/// Called by the <see cref="DidOpenHandler"/> when a document is opened in LSP. 94/// <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>());