2 types derived from AbstractExportLspServiceAttribute
Microsoft.CodeAnalysis.LanguageServer.Protocol (2)
LspServices\ExportLspServiceFactoryAttribute.cs (1)
18
internal class ExportLspServiceFactoryAttribute :
AbstractExportLspServiceAttribute
LspServices\ExportStatelessLspServiceAttribute.cs (1)
18
internal class ExportStatelessLspServiceAttribute :
AbstractExportLspServiceAttribute
7 references to AbstractExportLspServiceAttribute
Microsoft.CodeAnalysis.LanguageServer.Protocol (7)
LspServices\LspServiceMetadataView.cs (7)
29
var typeName = (string)metadata[nameof(
AbstractExportLspServiceAttribute
.TypeName)];
30
var assemblyName = (string)metadata[nameof(
AbstractExportLspServiceAttribute
.AssemblyName)];
31
var codeBase = (string?)metadata[nameof(
AbstractExportLspServiceAttribute
.CodeBase)];
34
var interfaceNames = (string[])metadata[nameof(
AbstractExportLspServiceAttribute
.InterfaceNames)];
37
ServerKind = (WellKnownLspServerKinds)metadata[nameof(
AbstractExportLspServiceAttribute
.ServerKind)];
38
IsStateless = (bool)metadata[nameof(
AbstractExportLspServiceAttribute
.IsStateless)];
40
var methodHandlerData = (string[]?)metadata[nameof(
AbstractExportLspServiceAttribute
.MethodHandlerData)];